import Link from "next-intl/link"; import { useTranslations } from "next-intl"; 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 ( ); }