pelican-landing/src/app/components/toolbar/toolbar.component.ts
ztimson 8e8f5ad362
All checks were successful
Build Website / Build NPM Project (push) Successful in 17s
Build Website / Tag Version (push) Successful in 4s
Build Website / Build & Push Dockerfile (push) Successful in 45s
Updated toolbar
2023-12-15 16:34:19 -05:00

15 lines
337 B
TypeScript

import {Component} from '@angular/core';
@Component({
selector: 'app-toolbar',
templateUrl: './toolbar.component.html'
})
export class ToolbarComponent {
navItems: [string, string][] = [
['Restaurant', '/coming-soon'],
['Hunting', '/coming-soon'],
['Fishing', '/coming-soon'],
['Lodging', '/coming-soon'],
]
}