This commit is contained in:
gpt-engineer-app[bot]
2026-01-27 19:24:01 +00:00
parent b7bf358981
commit 9d9ea09772
5 changed files with 259 additions and 163 deletions
+38 -26
View File
@@ -1,33 +1,45 @@
const Footer = () => {
return (
<footer className="py-16 px-6 border-t border-border">
<div className="max-w-6xl mx-auto">
<div className="flex flex-col md:flex-row justify-between items-center gap-6">
<div className="text-center md:text-left">
<p className="font-display text-xl font-semibold mb-1">
Lennart Svenssons Konditorivaror
</p>
<p className="text-muted-foreground text-sm">
Premium kakor till svenska kontor sedan 1974
</p>
</div>
<div className="flex gap-8 text-sm text-muted-foreground">
<a href="#" className="hover:text-primary transition-colors">
Om oss
</a>
<a href="#" className="hover:text-primary transition-colors">
Kontakt
</a>
<a href="#" className="hover:text-primary transition-colors">
Villkor
</a>
</div>
<footer className="py-16 px-6 bg-card border-t border-border">
<div className="max-w-5xl mx-auto">
{/* Main footer content */}
<div className="text-center mb-12">
<p className="font-display text-3xl font-semibold mb-2 italic text-foreground">
Lennart Svenssons
</p>
<p className="font-display text-xl text-primary mb-4">
Konditorivaror
</p>
<p className="text-muted-foreground italic">
"Äkta svenskt hantverk sedan 1974"
</p>
</div>
<div className="mt-12 pt-8 border-t border-border text-center text-muted-foreground text-sm">
© {new Date().getFullYear()} Lennart Svenssons Konditorivaror Alla
rättigheter förbehållna
{/* Divider */}
<div className="divider-ornament mb-8">
<span className="ornament text-lg"></span>
</div>
{/* Links */}
<div className="flex flex-wrap justify-center gap-8 text-sm text-muted-foreground mb-12">
<a href="#" className="hover:text-primary transition-colors">
Om konditoriet
</a>
<a href="#" className="hover:text-primary transition-colors">
Vårt sortiment
</a>
<a href="#" className="hover:text-primary transition-colors">
Kontakta oss
</a>
<a href="#" className="hover:text-primary transition-colors">
Allmänna villkor
</a>
</div>
{/* Copyright */}
<div className="text-center text-muted-foreground text-sm">
<p>© {new Date().getFullYear()} Lennart Svenssons Konditorivaror</p>
<p className="mt-1 italic">Alla rättigheter förbehållna</p>
</div>
</div>
</footer>