100 lines
2.6 KiB
TypeScript
100 lines
2.6 KiB
TypeScript
import Link from "next/link";
|
|
import BlurryDivider from "~/components/blurry_divider";
|
|
import { LogoSvg } from "~/components/svgs";
|
|
import { useTranslation } from "~/providers/I18nProvider";
|
|
export const Footer = () => {
|
|
const { t } = useTranslation();
|
|
return (
|
|
<div className="mt-auto">
|
|
<footer className="bottom-0 z-40 w-full bg-muted text-muted-foreground">
|
|
<div className="mx-auto max-w-6xl px-4 py-6 sm:px-6 lg:px-8">
|
|
<div className="text-center">
|
|
<Link
|
|
aria-label="footerLogo"
|
|
className="flex items-center justify-center font-bold text-3xl tracking-wide antialiased"
|
|
href="/"
|
|
>
|
|
<LogoSvg className="h-12 w-auto [&>g]:fill-red-500 dark:[&>g]:fill-neutral-100 [&>text]:fill-neutral-600 [&>text]:stroke-neutral-600 dark:[&>text]:fill-neutral-100 dark:[&>text]:stroke-neutral-100" />
|
|
</Link>
|
|
</div>
|
|
|
|
<nav aria-label="Footer Nav" className="mt-6">
|
|
<ul className="flex flex-wrap justify-center gap-6 md:gap-8 lg:gap-12">
|
|
<li>
|
|
<Link
|
|
aria-label="footerGuida"
|
|
className="text-sm"
|
|
href="/guida"
|
|
>
|
|
{t.footer.Guida}
|
|
</Link>
|
|
</li>
|
|
|
|
<li>
|
|
<Link
|
|
aria-label="footerChiSiamo"
|
|
className="text-sm"
|
|
href="/chi-siamo"
|
|
>
|
|
{t.footer["Chi Siamo"]}
|
|
</Link>
|
|
</li>
|
|
|
|
<li>
|
|
<Link
|
|
aria-label="footerTerminiCondizioni"
|
|
className="text-sm"
|
|
href="/termini-condizioni"
|
|
>
|
|
{t.termini_condizioni_title}
|
|
</Link>
|
|
</li>
|
|
<li>
|
|
<Link
|
|
aria-label="footerPrivacyPolicy"
|
|
className="text-sm"
|
|
href="/privacy-policy"
|
|
>
|
|
{t.privacy_policy_title}
|
|
</Link>
|
|
</li>
|
|
</ul>
|
|
</nav>
|
|
<div className="py-4">
|
|
<BlurryDivider />
|
|
</div>
|
|
|
|
<div className="text-center text-xs">
|
|
<p>{t.footer.endtxt}</p>
|
|
<p>{t.footer.endtxt2}</p>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
</div>
|
|
);
|
|
};
|
|
export const MiniFooter = () => {
|
|
const { t } = useTranslation();
|
|
return (
|
|
<div className="mt-auto flex w-full">
|
|
<footer className="z-40 w-full bg-neutral-100 text-neutral-700 dark:bg-primary dark:text-white">
|
|
<div className="mx-auto max-w-5xl px-2 py-2 sm:px-6 lg:px-8">
|
|
<div className="text-center">
|
|
<Link
|
|
aria-label="footerLogo"
|
|
className="font-bold text-2xl tracking-wide antialiased"
|
|
href="/"
|
|
>
|
|
Infoalloggi.it
|
|
</Link>
|
|
</div>
|
|
|
|
<div className="mt-2 text-center text-xs">
|
|
<p>{t.footer.endtxt}</p>
|
|
<p>{t.footer.endtxt2}</p>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
</div>
|
|
);
|
|
};
|