From 9bdf3df8105cbe29b41b354f0fff4b1d214cad3c Mon Sep 17 00:00:00 2001 From: "gpt-engineer-app[bot]" <159125892+gpt-engineer-app[bot]@users.noreply.github.com> Date: Wed, 28 Jan 2026 13:43:32 +0000 Subject: [PATCH] Changes --- src/components/QualitySection.tsx | 66 ------------------------------- src/pages/Index.tsx | 2 - 2 files changed, 68 deletions(-) delete mode 100644 src/components/QualitySection.tsx diff --git a/src/components/QualitySection.tsx b/src/components/QualitySection.tsx deleted file mode 100644 index 67fbf06..0000000 --- a/src/components/QualitySection.tsx +++ /dev/null @@ -1,66 +0,0 @@ -const QualitySection = () => { - const promises = [ - { - title: "Dagsfärska kakor", - description: "Alla kakor bakas samma dag som de levereras – aldrig frysta, alltid färska.", - }, - { - title: "Svensk hantverkstradition", - description: "Recept som gått i arv sedan 1974, med samma omsorg och kvalitet i varje kaka.", - }, - { - title: "Utvalda råvaror", - description: "Vi använder endast de finaste ingredienserna – riktigt smör, äkta vanilj och mandel av högsta kvalitet.", - }, - ]; - - return ( -
-
- {/* Section header */} -
-
-

- Vårt löfte -

-

- Kvalitet i varje kaka, varje leverans -

-
- - {/* Promises */} -
- {promises.map((promise, index) => ( -
-
- - {index + 1} - -
-
-

- {promise.title} -

-

- {promise.description} -

-
-
- ))} -
- - {/* Bottom tagline */} -
-

- — Lennart Svenssons Konditorivaror, sedan 1974 — -

-
-
-
- ); -}; - -export default QualitySection; \ No newline at end of file diff --git a/src/pages/Index.tsx b/src/pages/Index.tsx index 541ce98..0cc4a3a 100644 --- a/src/pages/Index.tsx +++ b/src/pages/Index.tsx @@ -3,7 +3,6 @@ import HeroSection from "@/components/HeroSection"; import HeritageSection from "@/components/HeritageSection"; import PlansSection from "@/components/PlansSection"; import DeliverySection from "@/components/DeliverySection"; -import QualitySection from "@/components/QualitySection"; import Footer from "@/components/Footer"; const Index = () => { @@ -14,7 +13,6 @@ const Index = () => { -