summaryrefslogtreecommitdiffstats
path: root/src/config/nav.ts
blob: 9e715e5c4998e8ccfb11d7cbe2f68b2be337230a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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: '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' },
];