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.

33 lines
857 B

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