From 4946d2586cea82812073d329e1dad5b7f1448d1f Mon Sep 17 00:00:00 2001 From: LOUIS POTEVIN Date: Thu, 25 Jun 2026 06:40:01 +0200 Subject: [PATCH] fix: updating translations --- src/components/SiteNav.astro | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/components/SiteNav.astro b/src/components/SiteNav.astro index 4d29cc1..f3bb213 100644 --- a/src/components/SiteNav.astro +++ b/src/components/SiteNav.astro @@ -4,9 +4,9 @@ import { Send } from '@lucide/astro'; const path = Astro.url.pathname.replace(/\/$/, '') || '/'; const links = [ - { href: '/', label: 'Accueil' }, - { href: '/work', label: 'Projets' }, - { href: '/about', label: 'À propos' }, + { href: '/', label: 'Home' }, + { href: '/work', label: 'Projects' }, + { href: '/about', label: 'About me' }, { href: '/contact', label: 'Contact' }, ]; const isActive = (href: string) => @@ -28,7 +28,7 @@ const isActive = (href: string) => }