27 lines
825 B
TypeScript
27 lines
825 B
TypeScript
import Image from "next/image";
|
|
|
|
export function SiteFooter() {
|
|
return (
|
|
<footer className="border-t border-white/10 px-5 py-10">
|
|
<div className="mx-auto flex max-w-6xl flex-col items-start justify-between gap-6 md:flex-row md:items-center">
|
|
<Image
|
|
src="/brand/sinka-logo.webp"
|
|
alt="Sinka: Inteligência em Logística"
|
|
width={160}
|
|
height={52}
|
|
className="h-7 w-auto"
|
|
/>
|
|
<div className="flex flex-col gap-2 text-sm text-[#E8F4E5]/50 md:items-end">
|
|
<p>Sinka · Inteligência em Logística</p>
|
|
<a href="/privacidade" className="text-[#82C85C]">
|
|
Privacidade
|
|
</a>
|
|
<a href="/termos" className="text-[#82C85C]">
|
|
Termos
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
);
|
|
}
|