diff --git a/src/app/page.tsx b/src/app/page.tsx index 3a15515..3336769 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -10,7 +10,7 @@ import TestimonialCardThirteen from "@/components/sections/testimonial/Testimoni import FaqSplitText from "@/components/sections/faq/FaqSplitText"; import ContactCTA from "@/components/sections/contact/ContactCTA"; import FooterMedia from "@/components/sections/footer/FooterMedia"; -import { Phone } from "lucide-react"; +import { Phone, MapPin, Mail, MessageSquare } from "lucide-react"; export default function DncCleanPage() { return ( @@ -33,7 +33,7 @@ export default function DncCleanPage() { navItems={[ { name: "Services", id: "services" }, { name: "About", id: "about" }, - { name: "Testimonials", id: "testimonials" }, + { name: "FAQ", id: "faq" }, { name: "Contact", id: "contact" }, ]} button={{ text: "Anfrage", href: "#contact" }} @@ -109,6 +109,8 @@ export default function DncCleanPage() { faqs={[ { id: "1", title: "Wo sind Sie tätig?", content: "Wir sind in ganz Wien und Umgebung tätig." }, { id: "2", title: "Wie kann ich buchen?", content: "Kontaktieren Sie uns einfach über das Kontaktformular oder telefonisch." }, + { id: "3", title: "Ist eine Besichtigung vor Ort nötig?", content: "Ja, für eine genaue Einschätzung des Aufwandes bieten wir eine kostenlose Erstbesichtigung vor Ort an." }, + { id: "4", title: "Verwenden Sie umweltfreundliche Reinigungsmittel?", content: "Wir legen Wert auf nachhaltige Lösungen und verwenden bei Bedarf umweltschonende Produkte." } ]} faqsAnimation="slide-up" useInvertedBackground={false} @@ -118,9 +120,9 @@ export default function DncCleanPage() {