import { useTranslations } from "next-intl"; import { Link } from "@/utils/navigation"; import Hamburger from "./Hamburger"; export default function Navbar() { const t = useTranslations("Nav"); const links = [ { title: t("tournaments"), route: "/tournaments" }, { title: t("clubs"), route: "/clubs" }, { title: t("elo"), route: "/elo" }, ] as const; return ( ); }