aboutsummaryrefslogtreecommitdiffstats
path: root/src/config/nav.ts
diff options
context:
space:
mode:
authorArmand Philippot <git@armandphilippot.com>2022-01-29 19:03:59 +0100
committerArmand Philippot <git@armandphilippot.com>2022-01-29 19:03:59 +0100
commit8fb5e4ef3ae925ebc6622711fb5c8c6147642cbc (patch)
tree9e99137a7b64ea7993a8311a7162336a551be8b2 /src/config/nav.ts
parent2bae7c43764df5678fe2fc2e68be11ae95d85a41 (diff)
parente4d5b8151802517b2943756fc0d09ffa95e2c4e2 (diff)
feat(i18n): replace linguijs with formatjs
Diffstat (limited to 'src/config/nav.ts')
-rw-r--r--src/config/nav.ts14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/config/nav.ts b/src/config/nav.ts
deleted file mode 100644
index ff69a78..0000000
--- a/src/config/nav.ts
+++ /dev/null
@@ -1,14 +0,0 @@
-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' },
-];