Remove decorative symbols

Delete small ornament elements from HeroSection and Footer to declutter UI, including ❧, ❦, and ✦ markers, and remove associated markup in HeroSection.tsx and Footer.tsx.

X-Lovable-Edit-ID: edt-69d403fb-12f7-4a4c-9d07-8821510ee572
This commit is contained in:
gpt-engineer-app[bot]
2026-01-27 20:57:25 +00:00
2 changed files with 0 additions and 11 deletions
-4
View File
@@ -15,10 +15,6 @@ const Footer = () => {
</p> </p>
</div> </div>
{/* Divider */}
<div className="divider-ornament mb-8">
<span className="ornament text-lg"></span>
</div>
{/* Links */} {/* Links */}
<div className="flex flex-wrap justify-center gap-8 text-sm text-muted-foreground mb-12"> <div className="flex flex-wrap justify-center gap-8 text-sm text-muted-foreground mb-12">
-7
View File
@@ -17,9 +17,6 @@ const HeroSection = () => {
Svenskt konditorhantverk sedan 1953 Svenskt konditorhantverk sedan 1953
</p> </p>
<div className="divider-ornament my-8">
<span className="ornament"></span>
</div>
<p className="max-w-xl mx-auto text-foreground text-xl mb-8 leading-relaxed"> <p className="max-w-xl mx-auto text-foreground text-xl mb-8 leading-relaxed">
Äkta fika levererat till ditt företag varje vecka Äkta fika levererat till ditt företag varje vecka
@@ -41,10 +38,6 @@ const HeroSection = () => {
</div> </div>
</div> </div>
{/* Bottom ornament */}
<div className="mt-8 text-primary/40 font-display text-2xl">
</div>
</section> </section>
); );
}; };