|
|
@ -1,4 +1,5 @@
|
|
|
|
export interface NavigationItem {
|
|
|
|
export interface NavigationItem {
|
|
|
|
|
|
|
|
finder: string;
|
|
|
|
path: string;
|
|
|
|
path: string;
|
|
|
|
name: string;
|
|
|
|
name: string;
|
|
|
|
icon?: string;
|
|
|
|
icon?: string;
|
|
|
@ -6,21 +7,25 @@ export interface NavigationItem {
|
|
|
|
|
|
|
|
|
|
|
|
export const navigationItems: NavigationItem[] = [
|
|
|
|
export const navigationItems: NavigationItem[] = [
|
|
|
|
{
|
|
|
|
{
|
|
|
|
path: '/',
|
|
|
|
finder: 'home',
|
|
|
|
|
|
|
|
path: process.env.NODE_ENV === 'production' ? '/' : '/containers/matheothierry-portfolio_nuxt/',
|
|
|
|
name: 'Home',
|
|
|
|
name: 'Home',
|
|
|
|
icon: 'home'
|
|
|
|
icon: 'home'
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
{
|
|
|
|
|
|
|
|
finder: 'projects',
|
|
|
|
path: process.env.NODE_ENV === 'production' ? '/projects' : '/containers/matheothierry-portfolio_nuxt/projects',
|
|
|
|
path: process.env.NODE_ENV === 'production' ? '/projects' : '/containers/matheothierry-portfolio_nuxt/projects',
|
|
|
|
name: 'Projets',
|
|
|
|
name: 'Projets',
|
|
|
|
icon: 'projects'
|
|
|
|
icon: 'projects'
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
{
|
|
|
|
|
|
|
|
finder: 'about',
|
|
|
|
path: process.env.NODE_ENV === 'production' ? '/about' : '/containers/matheothierry-portfolio_nuxt/about',
|
|
|
|
path: process.env.NODE_ENV === 'production' ? '/about' : '/containers/matheothierry-portfolio_nuxt/about',
|
|
|
|
name: 'À Propos',
|
|
|
|
name: 'À Propos',
|
|
|
|
icon: 'about'
|
|
|
|
icon: 'about'
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
{
|
|
|
|
|
|
|
|
finder: 'cv',
|
|
|
|
path: process.env.NODE_ENV === 'production' ? '/cv' : '/containers/matheothierry-portfolio_nuxt/cv',
|
|
|
|
path: process.env.NODE_ENV === 'production' ? '/cv' : '/containers/matheothierry-portfolio_nuxt/cv',
|
|
|
|
name: 'CV',
|
|
|
|
name: 'CV',
|
|
|
|
icon: 'cv'
|
|
|
|
icon: 'cv'
|
|
|
|