diff --git a/src/app/page.tsx b/src/app/page.tsx index 93c9438..0319bcf 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -12,7 +12,7 @@ import FaqDouble from "@/components/sections/faq/FaqDouble"; import FeatureCardTen from "@/components/sections/feature/FeatureCardTen"; import ContactSplitForm from "@/components/sections/contact/ContactSplitForm"; import FooterBase from "@/components/sections/footer/FooterBase"; -import { Sparkles, Truck, Languages, Award, Phone } from "lucide-react"; +import { Sparkles, Truck, Languages, Award, Phone, Star } from "lucide-react"; export default function BolebaPage() { return ( @@ -23,9 +23,9 @@ export default function BolebaPage() { brandName="BOLEBA" navItems={[ { name: "Startseite", id: "hero" }, - { name: "Teppichreinigung", id: "services" }, + { name: "Leistungen", id: "services" }, { name: "Über uns", id: "about" }, - { name: "Preise", id: "preise" }, + { name: "Erfolge", id: "metrics" }, { name: "Kontakt", id: "contact" }, ]} /> @@ -42,7 +42,10 @@ export default function BolebaPage() { { text: "0800 265 322 — Gratis anrufen", href: "tel:0800265322" }, ]} imageSrc="http://img.b2bpic.net/free-photo/water-drop-texture-background-blue-design_53876-142875.jpg" - testimonials={[]} + testimonials={[ + { name: "Maria K.", handle: "Basel", testimonial: "Hervorragender Service und sehr freundliche Mitarbeiter!", rating: 5 }, + { name: "Thomas B.", handle: "Zürich", testimonial: "Mein Perserteppich sieht aus wie neu. Absolut zu empfehlen.", rating: 5 }, + ]} useInvertedBackground={false} /> @@ -102,9 +105,9 @@ export default function BolebaPage() { { title: "Schritt für Schritt", description: "Ihr Teppich ist bei uns in besten Händen.", media: { imageSrc: "http://img.b2bpic.net/free-vector/parcel-icons-collection_1284-580.jpg" }, items: [ - { icon: Phone, text: "Sie rufen an" }, - { icon: Truck, text: "Wir holen ab" }, - { icon: Sparkles, text: "Frisch zurück" } + { icon: Phone, text: "Sie rufen an oder senden eine Anfrage" }, + { icon: Truck, text: "Wir holen Ihren Teppich direkt ab" }, + { icon: Sparkles, text: "Fachgerecht gereinigt zurück" } ], reverse: false } @@ -138,7 +141,7 @@ export default function BolebaPage() { faqs={[ { id: "1", title: "Wie funktioniert der Abholservice?", content: "Wir vereinbaren einen Termin, holen Ihren Teppich ab und liefern ihn sauber zurück." }, { id: "2", title: "Welche Teppiche reinigen Sie?", content: "Wir reinigen alle Arten, von Orient bis Modern." }, - { id: "3", title: "Wie lange dauert die Reinigung?", content: "In der Regel 3-7 Werktage." }, + { id: "3", title: "Wie lange dauert die Reinigung?", content: "In der Regel 3-7 Werktage nach Erhalt des Teppichs." }, ]} faqsAnimation="slide-up" textboxLayout="split" @@ -149,12 +152,13 @@ export default function BolebaPage() {
); -} +} \ No newline at end of file