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' },
];
|