Merge version_3 into main #2
217
src/app/page.tsx
217
src/app/page.tsx
@@ -2,205 +2,130 @@
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
import HeroSplitKpi from '@/components/sections/hero/HeroSplitKpi';
|
||||
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
|
||||
import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout';
|
||||
import FeatureCardOne from '@/components/sections/feature/FeatureCardOne';
|
||||
import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix';
|
||||
import ContactText from '@/components/sections/contact/ContactText';
|
||||
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
|
||||
import { Sparkles, Smile, Star, Phone } from 'lucide-react';
|
||||
import HeroBillboardDashboard from '@/components/sections/hero/HeroBillboardDashboard';
|
||||
import ProductCardThree from '@/components/sections/product/ProductCardThree';
|
||||
import TextAbout from '@/components/sections/about/TextAbout';
|
||||
import FeatureCardThree from '@/components/sections/feature/featureCardThree/FeatureCardThree';
|
||||
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';
|
||||
|
||||
export default function LuxuryDentistPage() {
|
||||
export default function DentistPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="text-stagger"
|
||||
defaultButtonVariant="hover-magnetic"
|
||||
defaultTextAnimation="reveal-blur"
|
||||
borderRadius="pill"
|
||||
contentWidth="smallMedium"
|
||||
sizing="mediumLargeSizeMediumTitles"
|
||||
background="aurora"
|
||||
cardStyle="layered-gradient"
|
||||
primaryButtonStyle="primary-glow"
|
||||
borderRadius="soft"
|
||||
contentWidth="mediumSmall"
|
||||
sizing="medium"
|
||||
background="noiseDiagonalGradient"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="solid"
|
||||
headingFontWeight="light"
|
||||
headingFontWeight="semibold"
|
||||
>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
brandName="Luxury Dental Care"
|
||||
brandName="Zahnarzt Frank Schmale"
|
||||
navItems={[
|
||||
{ name: "Home", id: "hero" },
|
||||
{ name: "Services", id: "services" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Contact", id: "contact" }
|
||||
{ name: "Leistungen", id: "services" },
|
||||
{ name: "Über uns", id: "about" },
|
||||
{ name: "Kontakt", id: "contact" }
|
||||
]}
|
||||
button={{
|
||||
text: "Schedule Consultation", href: "#contact"
|
||||
text: "Termin vereinbaren", href: "#contact"
|
||||
}}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroSplitKpi
|
||||
title="California's Premier Luxury Dental Practice"
|
||||
description="Experience world-class cosmetic and restorative dentistry with cutting-edge technology. Our award-winning dentists are committed to creating stunning smiles with personalized care and exceptional attention to detail."
|
||||
tag="Excellence Since 2005"
|
||||
<HeroBillboardDashboard
|
||||
title="Zahnarzt in Ehringshausen gesucht? Persönliche Behandlung ohne lange Wartezeiten."
|
||||
description="Ihre Zahngesundheit in besten Händen. Dr. Frank Schmale und Team bieten Ihnen moderne Zahnmedizin mit Herz, Präzision und lokalem Fokus in Ehringshausen."
|
||||
tag="Ihre Zahnarztpraxis in Ehringshausen"
|
||||
tagIcon={Sparkles}
|
||||
background={{ variant: "glowing-orb" }}
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/dentist/hero/hero1.avif"
|
||||
imageAlt="Modern luxury dental practice with state-of-the-art equipment"
|
||||
imagePosition="right"
|
||||
kpis={[
|
||||
{ value: "5000+", label: "Satisfied Patients" },
|
||||
{ value: "99.8%", label: "Satisfaction Rate" },
|
||||
{ value: "15+", label: "Industry Awards" }
|
||||
]}
|
||||
enableKpiAnimation={true}
|
||||
buttons={[
|
||||
{ text: "View Our Services", href: "#services" },
|
||||
{ text: "Book Your Visit", href: "#contact" }
|
||||
]}
|
||||
mediaAnimation="slide-up"
|
||||
dashboard={{
|
||||
title: "Patienten-Fokus", stats: [
|
||||
{ title: "Patienten", titleMobile: "Pat.", values: [1200, 1500, 2000], description: "Jährliche Patienten" },
|
||||
{ title: "Service", titleMobile: "Srv.", values: [98, 99, 100], description: "Zufriedenheit" },
|
||||
{ title: "Erfahrung", titleMobile: "Jahre", values: [15, 20, 25], description: "Erfahrung im Team" }
|
||||
],
|
||||
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" }]
|
||||
}}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="services" data-section="services">
|
||||
<ProductCardTwo
|
||||
title="Our Signature Services"
|
||||
description="From cosmetic enhancement to restorative excellence, our comprehensive services transform smiles and improve oral health with precision and artistry."
|
||||
tag="Premium Dental Services"
|
||||
tagIcon={Smile}
|
||||
textboxLayout="default"
|
||||
animationType="slide-up"
|
||||
<ProductCardThree
|
||||
title="Unsere Leistungen für Ihr strahlendes Lächeln"
|
||||
description="Wir decken das gesamte Spektrum der modernen Zahnmedizin ab – von der Prophylaxe bis zum hochwertigen Zahnersatz."
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
useInvertedBackground={true}
|
||||
animationType="slide-up"
|
||||
textboxLayout="split"
|
||||
products={[
|
||||
{
|
||||
id: "1", brand: "Cosmetic", name: "Smile Design & Whitening", price: "From $500", rating: 5,
|
||||
reviewCount: "234", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/dentist/services/service1.avif", imageAlt: "Cosmetic smile design consultation"
|
||||
},
|
||||
{
|
||||
id: "2", brand: "Restorative", name: "Dental Implants & Crowns", price: "From $1,200", rating: 5,
|
||||
reviewCount: "312", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/dentist/services/service2.avif", imageAlt: "Advanced dental implant technology"
|
||||
},
|
||||
{
|
||||
id: "3", brand: "Advanced", name: "Orthodontics & Aligners", price: "From $800", rating: 5,
|
||||
reviewCount: "289", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/dentist/services/service3.avif", imageAlt: "Clear aligner orthodontic treatment"
|
||||
}
|
||||
]}
|
||||
buttons={[
|
||||
{ text: "Schedule Consultation", href: "#contact" }
|
||||
{ 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" },
|
||||
{ id: "3", name: "Ästhetische Zahnheilkunde", price: "Modern", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/dentist/services/service3.avif" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="about" data-section="about">
|
||||
<InlineImageSplitTextAbout
|
||||
heading={[
|
||||
{ type: "text", content: "Trusted Excellence in Dental Care Across California" }
|
||||
]}
|
||||
useInvertedBackground={false}
|
||||
buttons={[
|
||||
{ text: "Meet Our Team", href: "#testimonials" },
|
||||
{ text: "Learn More", href: "#contact" }
|
||||
]}
|
||||
<TextAbout
|
||||
title="Ihr Zahnarzt in Ehringshausen: Dr. Frank Schmale"
|
||||
tag="Über Uns"
|
||||
useInvertedBackground={true}
|
||||
buttons={[{ text: "Unser Team", href: "#contact" }]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="features" data-section="features">
|
||||
<FeatureCardOne
|
||||
title="Why Choose Our Luxury Practice"
|
||||
description="We combine artistic excellence with scientific precision, utilizing the latest technology and techniques to deliver transformative results that exceed expectations."
|
||||
tag="Premium Dental Excellence"
|
||||
tagIcon={Star}
|
||||
textboxLayout="default"
|
||||
animationType="slide-up"
|
||||
gridVariant="uniform-all-items-equal"
|
||||
useInvertedBackground={true}
|
||||
<FeatureCardThree
|
||||
title="Warum unsere Praxis?"
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
animationType="blur-reveal"
|
||||
textboxLayout="split"
|
||||
features={[
|
||||
{
|
||||
title: "Digital Technology", description: "3D imaging, intraoral cameras, and computer-aided design for precise diagnostics and treatment planning", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/dentist/about/about1.avif"},
|
||||
{
|
||||
title: "Master Craftsmanship", description: "Award-winning dentists with decades of experience in cosmetic and restorative excellence", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/dentist/about/about2.avif"}
|
||||
{ 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" },
|
||||
{ title: "Persönliche Betreuung", description: "Jeder Patient wird bei uns individuell und einfühlsam behandelt.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/dentist/services/service2.avif" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardSix
|
||||
title="What Our Patients Say"
|
||||
description="Discover why hundreds of California's discerning patients trust us for their dental care and smile transformations"
|
||||
tag="Patient Reviews"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
<TestimonialCardTwo
|
||||
title="Das sagen unsere Patienten"
|
||||
animationType="slide-up"
|
||||
textboxLayout="split"
|
||||
testimonials={[
|
||||
{
|
||||
id: "1", name: "Jennifer Martinez", handle: "San Diego Patient", testimonial: "The most professional and caring dental experience I've ever had. The results exceeded my expectations and the attention to detail is extraordinary.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/luxury-travel-agency/testimonial/testimonial1.webp", imageAlt: "Jennifer Martinez"
|
||||
},
|
||||
{
|
||||
id: "2", name: "Robert Chen", handle: "Business Executive", testimonial: "Finally found a dentist who understands aesthetics and function. My smile is now my confidence. Highly recommended to anyone serious about quality.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/luxury-travel-agency/testimonial/testimonial2.webp", imageAlt: "Robert Chen"
|
||||
},
|
||||
{
|
||||
id: "3", name: "Sarah Williams", handle: "Entertainment Industry", testimonial: "This is the place where art meets science. My smile transformation has been life-changing. The expertise here is unmatched.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/luxury-travel-agency/testimonial/testimonial3.webp", imageAlt: "Sarah Williams"
|
||||
},
|
||||
{
|
||||
id: "4", name: "Michael Torres", handle: "Loyal Patient", testimonial: "I've been a patient for 8 years. The consistent excellence, warm staff, and cutting-edge treatments keep me coming back with confidence.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/skincare/image5.avif", imageAlt: "Michael Torres"
|
||||
},
|
||||
{
|
||||
id: "5", name: "Amanda Rodriguez", handle: "Social Media Influencer", testimonial: "When your smile matters for your career, you go to the best. This practice delivered a smile that's both beautiful and natural-looking.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/skincare/image6.avif", imageAlt: "Amanda Rodriguez"
|
||||
},
|
||||
{
|
||||
id: "6", name: "David Kim", handle: "Healthcare Professional", testimonial: "The clinical precision combined with artistic vision is remarkable. This team truly understands comprehensive dental care at the highest level.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/skincare/image7.avif", imageAlt: "David Kim"
|
||||
}
|
||||
{ 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." }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactText
|
||||
text="Ready to transform your smile? Our dedicated team is available at (555) 123-4567 to assist you. Visit us in the heart of the city at 123 Dental Plaza, Suite 400, Beverly Hills, CA 90210. Book your private consultation today and experience the pinnacle of dental care."
|
||||
background={{ variant: "sparkles-gradient" }}
|
||||
useInvertedBackground={true}
|
||||
buttons={[
|
||||
{ text: "Call Us Now", href: "tel:+15551234567" },
|
||||
{ text: "Book Appointment", href: "#" }
|
||||
]}
|
||||
<ContactSplitForm
|
||||
title="Jetzt Ihren Termin vereinbaren"
|
||||
description="Schreiben Sie uns eine Nachricht, wir melden uns zeitnah für eine Terminabsprache zurück."
|
||||
inputs={[{ name: "Name", type: "text", placeholder: "Name" }, { name: "Telefon", type: "tel", placeholder: "Telefonnummer" }]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseCard
|
||||
logoText="Luxury Dental Care California"
|
||||
copyrightText="© 2025 Luxury Dental Care | SEO Optimized Premium Dentistry"
|
||||
<FooterBase
|
||||
logoText="Zahnarzt Dr. Frank Schmale"
|
||||
columns={[
|
||||
{
|
||||
title: "Locations & Service Areas", items: [
|
||||
{ label: "Beverly Hills Dental Center", href: "#" },
|
||||
{ label: "West Los Angeles", href: "#" },
|
||||
{ label: "Santa Monica", href: "#" },
|
||||
{ label: "Hollywood", href: "#" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Practice Information", items: [
|
||||
{ label: "Book Appointment", href: "#contact" },
|
||||
{ label: "Patient Reviews", href: "#testimonials" },
|
||||
{ label: "Technology", href: "#features" },
|
||||
{ label: "Privacy Policy", href: "#" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Connect", items: [
|
||||
{ label: "Instagram", href: "https://instagram.com" },
|
||||
{ label: "Facebook", href: "https://facebook.com" },
|
||||
{ label: "Google Reviews", href: "https://google.com" },
|
||||
{ label: "Smile Gallery", href: "#" }
|
||||
]
|
||||
}
|
||||
{ title: "Kontakt", items: [{ label: "Telefon: 06443-123456", href: "tel:+496443123456" }, { label: "Hauptstraße, Ehringshausen", href: "#" }] },
|
||||
{ title: "Service", items: [{ label: "Termin online", href: "#contact" }, { label: "Notdienst", href: "#" }] }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user