From 91d0d0025cf4ba6bc92286d74f5dbff6c5dccaff 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:42:06 +0000 Subject: [PATCH] Changes --- src/components/DeliverySection.tsx | 64 +++++++++++++++++++++++++++++ src/components/QualitySection.tsx | 66 ++++++++++++++++++++++++++++++ src/pages/Index.tsx | 4 ++ 3 files changed, 134 insertions(+) create mode 100644 src/components/DeliverySection.tsx create mode 100644 src/components/QualitySection.tsx diff --git a/src/components/DeliverySection.tsx b/src/components/DeliverySection.tsx new file mode 100644 index 0000000..a03e6dd --- /dev/null +++ b/src/components/DeliverySection.tsx @@ -0,0 +1,64 @@ +import { Truck, Clock, MapPin } from "lucide-react"; + +const DeliverySection = () => { + return ( +
+
+ {/* Section header */} +
+
+

+ Leverans +

+

+ Färska kakor direkt till ert kontor – varje vecka +

+
+ + {/* Info cards */} +
+ {/* Leveransområde */} +
+
+ +
+

+ Storstockholm +

+

+ Vi levererar till alla företag inom Storstockholmsområdet. +

+
+ + {/* Leveransdag */} +
+
+ +
+

+ Veckoleverans +

+

+ Samma dag varje vecka – ni väljer vilken dag som passar er bäst. +

+
+ + {/* Leveranstid */} +
+
+ +
+

+ Dagtid +

+

+ Leverans under kontorstid. Meddela oss om ni har särskilda önskemål. +

+
+
+
+
+ ); +}; + +export default DeliverySection; \ No newline at end of file diff --git a/src/components/QualitySection.tsx b/src/components/QualitySection.tsx new file mode 100644 index 0000000..67fbf06 --- /dev/null +++ b/src/components/QualitySection.tsx @@ -0,0 +1,66 @@ +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 4b517d8..541ce98 100644 --- a/src/pages/Index.tsx +++ b/src/pages/Index.tsx @@ -2,6 +2,8 @@ import Header from "@/components/Header"; 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 = () => { @@ -11,6 +13,8 @@ const Index = () => { + +