35 lines
1.3 KiB
TypeScript
35 lines
1.3 KiB
TypeScript
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>
|
||
);
|
||
}
|