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 = () => { -