blob: de60369c1b0ec95b5b29aaeacfd74c80cde9e81c (
plain)
1
2
3
4
5
6
7
8
9
|
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' },
];
|