Initialize repo

This commit is contained in:
Kazimierz Ciołek
2026-02-02 13:44:55 +01:00
commit 704edb6ae0
149 changed files with 12373 additions and 0 deletions

34
components/footer.tsx Normal file
View File

@@ -0,0 +1,34 @@
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>
);
}