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.

29 lines
552 B

import type { NavigationItem } from '~/types/navigation';
import { withBasePath } from './basePath';
export const navigationItems: NavigationItem[] = [
{
finder: 'home',
path: withBasePath('/'),
name: 'Home',
icon: 'home'
},
{
finder: 'projects',
path: withBasePath('/projects'),
name: 'Projets',
icon: 'projects'
},
{
finder: 'about',
path: withBasePath('/about'),
name: 'À Propos',
icon: 'about'
},
{
finder: 'cv',
path: withBasePath('/cv'),
name: 'CV',
icon: 'cv'
}
]