sinka/web/src/components/landing/site-footer.tsx
armando cf16bf1fb6 Show integration health in the admin and keep clients on their own screen.
Co-authored-by: Cursor <cursoragent@cursor.com>
2026-09-16 03:43:18 -03:00

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>
);
}