You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
670 B

export interface NavigationItem {
path: string;
name: string;
icon?: string;
}
export const navigationItems: NavigationItem[] = [
{
path: '/',
name: 'Home',
icon: 'home'
},
{
path: process.env.NODE_ENV === 'production' ? '/projects' : '/containers/matheothierry-portfolio_nuxt/projects',
name: 'Projets',
icon: 'projects'
},
{
path: process.env.NODE_ENV === 'production' ? '/about' : '/containers/matheothierry-portfolio_nuxt/about',
name: 'À Propos',
icon: 'about'
},
{
path: process.env.NODE_ENV === 'production' ? '/cv' : '/containers/matheothierry-portfolio_nuxt/cv',
name: 'CV',
icon: 'cv'
}
]