import Link from "next/link"; import { useTranslation } from "~/providers/I18nProvider"; import { ShieldExclamationIcon } from "~/components/IconComponents"; export default function Custom500Auth() { const { t } = useTranslation(); return (

{t[500].titolo}

{t[500].sottotitolo}

{t[500].CTALogin} {t[500].home}
); }