import Link from "next/link"; import { LogoSvg } from "~/components/svgs"; import { cn } from "~/lib/utils"; import { useTranslation } from "~/providers/I18nProvider"; type MainNavProps = { pathname: string; }; export function MainNav({ pathname }: MainNavProps) { const { t } = useTranslation(); return (