9 lines
316 B
TypeScript
Executable File
9 lines
316 B
TypeScript
Executable File
import { SectionNavItem } from '../models/section-nav.model';
|
|
|
|
export const MAIN_NAVIGATION: SectionNavItem[] = [
|
|
{ label: 'Work', path: '/', fragment: 'work' },
|
|
{ label: 'Profile', path: '/', fragment: 'profile' },
|
|
{ label: 'Experience', path: '/', fragment: 'experience' },
|
|
{ label: 'CV', path: '/cv' }
|
|
];
|