From 8e8f5ad36213ee614afd65439dcee8eb0bb23220 Mon Sep 17 00:00:00 2001 From: ztimson Date: Fri, 15 Dec 2023 16:34:19 -0500 Subject: [PATCH] Updated toolbar --- src/app/components/toolbar/toolbar.component.html | 11 ++--------- src/app/components/toolbar/toolbar.component.ts | 9 ++++++++- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/src/app/components/toolbar/toolbar.component.html b/src/app/components/toolbar/toolbar.component.html index 01fcf71..116c9cc 100644 --- a/src/app/components/toolbar/toolbar.component.html +++ b/src/app/components/toolbar/toolbar.component.html @@ -4,21 +4,14 @@ - - - - + - - - - - + diff --git a/src/app/components/toolbar/toolbar.component.ts b/src/app/components/toolbar/toolbar.component.ts index 55c80dd..7f01f80 100644 --- a/src/app/components/toolbar/toolbar.component.ts +++ b/src/app/components/toolbar/toolbar.component.ts @@ -4,4 +4,11 @@ import {Component} from '@angular/core'; selector: 'app-toolbar', templateUrl: './toolbar.component.html' }) -export class ToolbarComponent { } +export class ToolbarComponent { + navItems: [string, string][] = [ + ['Restaurant', '/coming-soon'], + ['Hunting', '/coming-soon'], + ['Fishing', '/coming-soon'], + ['Lodging', '/coming-soon'], + ] +}