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
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' ? '/containers/matheothierry-portfolio_nuxt/projects' : '/projects',
|
|
name: 'Projets',
|
|
icon: 'projects'
|
|
},
|
|
{
|
|
finder: 'about',
|
|
path: process.env.NODE_ENV === 'production' ? '/containers/matheothierry-portfolio_nuxt/about' : '/about',
|
|
name: 'À Propos',
|
|
icon: 'about'
|
|
},
|
|
{
|
|
finder: 'cv',
|
|
path: process.env.NODE_ENV === 'production' ? '/containers/matheothierry-portfolio_nuxt/cv' : '/cv',
|
|
name: 'CV',
|
|
icon: 'cv'
|
|
}
|
|
] |