Files
Sloneczko/components/footer.tsx
Kazimierz Ciołek 704edb6ae0 Initialize repo
2026-02-02 13:44:55 +01:00

35 lines
1.3 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
export function Footer() {
return (
<footer className="bg-foreground text-primary-foreground py-12">
<div className="container mx-auto px-6">
<div className="flex flex-col md:flex-row items-center justify-between gap-6">
<div className="flex items-center gap-3">
<div className="w-10 h-10 rounded-full bg-accent flex items-center justify-center">
<span className="text-lg"></span>
</div>
<div>
<h3 className="font-serif text-lg font-bold">SŁONECZKO</h3>
<p className="text-xs text-primary-foreground/60">Domki Letniskowe</p>
</div>
</div>
<div className="text-center md:text-right">
<p className="text-sm text-primary-foreground/60">
ul. Piastowska 9, 78-131 Dźwirzyno
</p>
<p className="text-sm text-primary-foreground/60">
www.sloneczkodomki.pl
</p>
</div>
</div>
<div className="border-t border-primary-foreground/10 mt-8 pt-8">
<p className="text-center text-sm text-primary-foreground/40">
© {new Date().getFullYear()} Słoneczko Domki Letniskowe. Wszelkie prawa zastrzeżone.
</p>
</div>
</div>
</footer>
);
}