aboutsummaryrefslogtreecommitdiffstats
path: root/src/config
diff options
context:
space:
mode:
authorArmand Philippot <git@armandphilippot.com>2022-01-20 17:13:15 +0100
committerArmand Philippot <git@armandphilippot.com>2022-01-20 17:20:56 +0100
commitdf9e8b1985a0f1c71c0657e72fad008bf437faba (patch)
treeeeb2a066982a3e81836668ce9a5613cffc023e77 /src/config
parent8966fde6ff520cfbe74c031c8b2e3a66d298b172 (diff)
chore: add projects to main nav
I redesign a little the main nav on small screens so it can takes two columns when the screen height is low. I change the 2xs breakpoint to 500px instead of 400px.
Diffstat (limited to 'src/config')
-rw-r--r--src/config/nav.ts1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/config/nav.ts b/src/config/nav.ts
index 9e715e5..ff69a78 100644
--- a/src/config/nav.ts
+++ b/src/config/nav.ts
@@ -4,6 +4,7 @@ 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' },
];