From d01cf3ba673f0e0be691683b87511626eedf4026 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 15 Apr 2026 17:55:52 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) 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() {
Date: Wed, 15 Apr 2026 17:55:53 +0000 Subject: [PATCH 2/2] Update src/app/styles/variables.css --- src/app/styles/variables.css | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/app/styles/variables.css b/src/app/styles/variables.css index 99a809c..60f9709 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -10,15 +10,15 @@ --accent: #ffffff; --background-accent: #ffffff; */ - --background: #f8fafc; - --card: #ffffff; - --foreground: #0f172a; - --primary-cta: #1d4ed8; + --background: #fafffb; + --card: #f7fffa; + --foreground: #001a0a; + --primary-cta: #0a7039; --primary-cta-text: #ffffff; - --secondary-cta: #e0e7ff; + --secondary-cta: #ffffff; --secondary-cta-text: #1e3a5f; - --accent: #3b82f6; - --background-accent: #60a5fa; + --accent: #a8d9be; + --background-accent: #6bbf8e; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); -- 2.49.1