diff --git a/app/[lang]/components/Navbar.tsx b/app/[lang]/components/Navbar.tsx index 810e10f..fb28091 100644 --- a/app/[lang]/components/Navbar.tsx +++ b/app/[lang]/components/Navbar.tsx @@ -6,6 +6,12 @@ import Hamburger from "./Hamburger"; export default function Navbar() { const t = useTranslations("Nav"); + const links = [ + { title: t("tournaments"), route: "/tournois" }, + { title: t("about"), route: "/qui-sommes-nous" }, + { title: t("contact"), route: "/contactez-nous" }, + ]; + return (