Merge version_3 into main #3

Merged
bender merged 1 commits from version_3 into main 2026-05-20 18:55:18 +00:00

View File

@@ -9,7 +9,7 @@ import FeatureCardThree from '@/components/sections/feature/featureCardThree/Fea
import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo';
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FooterBase from '@/components/sections/footer/FooterBase';
import { Sparkles, Smile, Star, Phone, CheckCircle, Clock, MapPin } from 'lucide-react';
import { Sparkles, CheckCircle, Clock, Phone } from 'lucide-react';
export default function DentistPage() {
return (
@@ -35,7 +35,8 @@ export default function DentistPage() {
{ name: "Kontakt", id: "contact" }
]}
button={{
text: "Termin vereinbaren", href: "#contact"
text: "Termin vereinbaren",
href: "#contact"
}}
/>
</div>
@@ -54,7 +55,8 @@ export default function DentistPage() {
],
logoIcon: Phone,
sidebarItems: [{ icon: CheckCircle, active: true }, { icon: Clock }],
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/dentist/hero/hero1.avif", buttons: [{ text: "Jetzt anrufen", href: "tel:+496443123456" }]
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/dentist/hero/hero1.avif", buttons: [{ text: "Jetzt anrufen", href: "tel:+496443123456" }],
listItems: [{ icon: CheckCircle, title: "Notdienst verfügbar", status: "Aktiv" }]
}}
/>
</div>
@@ -66,6 +68,7 @@ export default function DentistPage() {
gridVariant="three-columns-all-equal-width"
animationType="slide-up"
textboxLayout="split"
useInvertedBackground={false}
products={[
{ id: "1", name: "Prophylaxe & PZR", price: "Professionell", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/dentist/services/service1.avif" },
{ id: "2", name: "Implantologie", price: "Hochwertig", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/dentist/services/service2.avif" },
@@ -86,9 +89,11 @@ export default function DentistPage() {
<div id="features" data-section="features">
<FeatureCardThree
title="Warum unsere Praxis?"
description="Erfahren Sie mehr über unsere Vorteile."
gridVariant="three-columns-all-equal-width"
animationType="blur-reveal"
textboxLayout="split"
useInvertedBackground={false}
features={[
{ title: "Kurze Wartezeiten", description: "Wir schätzen Ihre Zeit und optimieren unsere Abläufe.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/dentist/about/about1.avif" },
{ title: "Moderne Technik", description: "Präzise Diagnostik dank digitalem Röntgen und moderner Verfahren.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/dentist/about/about2.avif" },
@@ -100,8 +105,10 @@ export default function DentistPage() {
<div id="testimonials" data-section="testimonials">
<TestimonialCardTwo
title="Das sagen unsere Patienten"
description="Zufriedene Patienten sind unser größter Erfolg."
animationType="slide-up"
textboxLayout="split"
useInvertedBackground={false}
testimonials={[
{ id: "1", name: "Familie M.", role: "Patient aus Ehringshausen", testimonial: "Sehr einfühlsames Team, kaum Wartezeit und ein Ergebnis, das mich überzeugt hat." },
{ id: "2", name: "Thomas S.", role: "Berufstätig", testimonial: "Endlich ein Zahnarzt, bei dem man nicht monatelang auf einen Termin warten muss." }
@@ -113,6 +120,7 @@ export default function DentistPage() {
<ContactSplitForm
title="Jetzt Ihren Termin vereinbaren"
description="Schreiben Sie uns eine Nachricht, wir melden uns zeitnah für eine Terminabsprache zurück."
useInvertedBackground={true}
inputs={[{ name: "Name", type: "text", placeholder: "Name" }, { name: "Telefon", type: "tel", placeholder: "Telefonnummer" }]}
/>
</div>