Files
matheoguilbert.fr/components/layout/Footer.tsx
T

41 lines
1.8 KiB
TypeScript

import { FiFacebook, FiInstagram, FiLinkedin, FiGithub } from "react-icons/fi";
import { useTranslations } from "next-intl";
export default function Footer() {
const t = useTranslations('footer');
return (
<footer className="w-[calc(100vw - 11px*2)] bg-brand-brown rounded-t-[10px] mx-2.75 flex flex-col items-center justify-center py-15 text-brand-beige gap-6">
{/* Logo */}
<img src="/icons/logo.svg" alt="logo mg dev mb-4" />
<div className="flex flex-col lg:flex-row justify-center items-start gap-16">
<div className="flex flex-col items-start justify-start gap-4">
<h3 className="font-serif text-3xl">Mathéo Guilbert EI</h3>
<p className="font-sans text-base">{t('me')}</p>
</div>
<div className="flex flex-col items-start justify-start gap-4">
<h3 className="font-serif text-3xl">{t('legal.title')}</h3>
<p className="font-sans text-base">{t('legal.legalNotice')}</p>
<p className="font-sans text-base">{t('legal.termsAndConditions')}</p>
</div>
<div className="flex flex-col items-start justify-start gap-4">
<h3 className="font-serif text-3xl">Contact</h3>
<p className="font-sans text-base">+33 6 71 03 67 12</p>
</div>
</div>
{/* Links */}
<div className="w-4/5 border-t border-brand-beige/20 pt-4 flex flex-row justify-center items-center gap-6 text-2xl">
<FiFacebook />
<FiInstagram />
<FiLinkedin />
<FiGithub />
</div>
<p className="text-brand-beige/70 font-sans text-sm">{t('copyright')}</p>
</footer>
);
}