This commit is contained in:
gpt-engineer-app[bot]
2026-01-27 19:39:02 +00:00
parent 7f45989b00
commit b59fdd8d66
4 changed files with 84 additions and 29 deletions
+24 -29
View File
@@ -1,48 +1,43 @@
import Logo from "./Logo";
const HeroSection = () => {
return (
<section className="hero-gradient min-h-screen flex flex-col justify-center items-center text-center px-6 py-20 relative">
<section className="hero-gradient min-h-screen flex flex-col justify-center items-center text-center px-6 py-20 pt-32 relative">
{/* Decorative top border */}
<div className="absolute top-0 left-0 right-0 h-2 bg-primary/20" />
<div className="animate-fade-up max-w-4xl">
{/* Ornamental divider */}
<div className="divider-ornament mb-8">
<span className="ornament"></span>
{/* Logo */}
<div className="mb-8">
<Logo size="large" />
</div>
<p className="text-primary uppercase tracking-[0.4em] text-sm font-semibold mb-4">
Sedan 1974
</p>
<h1 className="font-display text-5xl md:text-7xl font-semibold mb-4 leading-tight text-foreground italic">
Lennart Svenssons
</h1>
<p className="font-display text-3xl md:text-4xl mb-2 text-primary font-medium">
Konditorivaror
<p className="text-muted-foreground italic text-lg mb-8">
Svenskt konditorhantverk sedan 1953
</p>
<div className="divider-ornament my-8">
<span className="ornament"></span>
</div>
<h2 className="font-display text-2xl md:text-3xl font-medium mb-6 text-foreground">
Kakabonnemang för företag
</h2>
<p className="max-w-xl mx-auto text-muted-foreground text-lg mb-12 leading-relaxed">
Genuina konditorikakor bakade med tradition och omsorg,
levererade direkt till ert kontor.
<br />
<em>Smaken av äkta svenskt hantverk.</em>
<p className="max-w-xl mx-auto text-foreground text-xl mb-8 leading-relaxed italic">
"Äkta fika levererat till ditt företag — prenumeration eller engångsorder"
</p>
<a
href="#plans"
className="btn-classic inline-block px-10 py-4 text-lg rounded-sm"
>
Starta ert abonnemang
</a>
<div className="flex flex-col sm:flex-row gap-4 justify-center">
<a
href="#plans"
className="btn-classic inline-block px-10 py-4 text-lg rounded-sm"
>
Starta Prenumeration
</a>
<a
href="#gallery"
className="inline-block px-10 py-4 text-lg rounded-sm border-2 border-primary text-primary hover:bg-primary hover:text-primary-foreground transition-colors"
>
Se Produkter
</a>
</div>
</div>
{/* Bottom ornament */}