summaryrefslogtreecommitdiffstats
path: root/src/config/nav.ts
blob: ff69a78a2395a30671c739c8a7dfb4448e00a869 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import { t } from '@lingui/macro';
import { NavItem } from '@ts/types/nav';

export const mainNav: NavItem[] = [
  { id: 'home', name: t`Home`, slug: '/' },
  { id: 'blog', name: t`Blog`, slug: '/blog' },
  { id: 'projects', name: t`Projects`, slug: '/projets' },
  { id: 'cv', name: t`Resume`, slug: '/cv' },
  { id: 'contact', name: t`Contact`, slug: '/contact' },
];

export const footerNav: NavItem[] = [
  { id: 'legal-notice', name: t`Legal notice`, slug: '/mentions-legales' },
];