import Link from "next/link"; import BlurryDivider from "~/components/blurry_divider"; import { LogoSvg } from "~/components/svgs"; import { cn } from "~/lib/utils"; import { useTranslation } from "~/providers/I18nProvider"; type FooterProps = { className?: string; }; export const Footer = ({ className }: FooterProps) => { const { t } = useTranslation(); return (