1 Commits

Author SHA1 Message Date
075994e01d Update src/app/page.tsx 2026-04-22 22:05:49 +00:00

View File

@@ -9,9 +9,9 @@ import FeatureCardOne from '@/components/sections/feature/FeatureCardOne';
import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix'; import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix';
import ContactSplit from '@/components/sections/contact/ContactSplit'; import ContactSplit from '@/components/sections/contact/ContactSplit';
import FooterBase from '@/components/sections/footer/FooterBase'; import FooterBase from '@/components/sections/footer/FooterBase';
import { Sparkles, Smile, Star, Mail } from 'lucide-react'; import { Wrench, Zap, Award, Mail, Droplets, ShieldCheck } from 'lucide-react';
export default function LuxuryDentistPage() { export default function PlumbingProsPage() {
return ( return (
<ThemeProvider <ThemeProvider
defaultButtonVariant="text-stagger" defaultButtonVariant="text-stagger"
@@ -23,11 +23,11 @@ export default function LuxuryDentistPage() {
cardStyle="layered-gradient" cardStyle="layered-gradient"
primaryButtonStyle="primary-glow" primaryButtonStyle="primary-glow"
secondaryButtonStyle="solid" secondaryButtonStyle="solid"
headingFontWeight="light" headingFontWeight="semibold"
> >
<div id="nav" data-section="nav"> <div id="nav" data-section="nav">
<NavbarLayoutFloatingInline <NavbarLayoutFloatingInline
brandName="Luxury Dental Care" brandName="San Diego Plumbing Pros"
navItems={[ navItems={[
{ name: "Home", id: "hero" }, { name: "Home", id: "hero" },
{ name: "Services", id: "services" }, { name: "Services", id: "services" },
@@ -35,31 +35,30 @@ export default function LuxuryDentistPage() {
{ name: "Contact", id: "contact" } { name: "Contact", id: "contact" }
]} ]}
button={{ button={{
text: "Schedule Consultation", text: "Book A Service", href: "#contact"
href: "#contact"
}} }}
/> />
</div> </div>
<div id="hero" data-section="hero"> <div id="hero" data-section="hero">
<HeroSplitKpi <HeroSplitKpi
title="California's Premier Luxury Dental Practice" title="San Diego's Trusted Expert Plumbers"
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." description="Prompt, professional, and reliable plumbing services for your home and business. From emergency leaks to complete repiping, we solve problems fast."
tag="Excellence Since 2005" tag="Serving San Diego Since 2012"
tagIcon={Sparkles} tagIcon={Wrench}
background={{ variant: "glowing-orb" }} background={{ variant: "glowing-orb" }}
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/dentist/hero/hero1.avif" imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/plumbing/hero1.avif"
imageAlt="Modern luxury dental practice with state-of-the-art equipment" imageAlt="Professional plumber at work"
imagePosition="right" imagePosition="right"
kpis={[ kpis={[
{ value: "5000+", label: "Satisfied Patients" }, { value: "10,000+", label: "Jobs Completed" },
{ value: "99.8%", label: "Satisfaction Rate" }, { value: "24/7", label: "Emergency Ready" },
{ value: "15+", label: "Industry Awards" } { value: "100%", label: "License & Insured" }
]} ]}
enableKpiAnimation={true} enableKpiAnimation={true}
buttons={[ buttons={[
{ text: "View Our Services", href: "#services" }, { text: "Our Services", href: "#services" },
{ text: "Book Your Visit", href: "#contact" } { text: "Get A Quote", href: "#contact" }
]} ]}
mediaAnimation="slide-up" mediaAnimation="slide-up"
/> />
@@ -67,48 +66,30 @@ export default function LuxuryDentistPage() {
<div id="services" data-section="services"> <div id="services" data-section="services">
<ProductCardTwo <ProductCardTwo
title="Our Signature Services" title="Reliable Plumbing Solutions"
description="From cosmetic enhancement to restorative excellence, our comprehensive services transform smiles and improve oral health with precision and artistry." description="We offer a full suite of plumbing services handled by certified, background-checked technicians to ensure your systems run smoothly."
tag="Premium Dental Services" tag="Professional Services"
tagIcon={Smile} tagIcon={Droplets}
textboxLayout="default" textboxLayout="default"
animationType="slide-up" animationType="slide-up"
gridVariant="three-columns-all-equal-width" gridVariant="three-columns-all-equal-width"
useInvertedBackground={true} useInvertedBackground={true}
products={[ products={[
{ {
id: "1", id: "1", brand: "Emergency", name: "Leak & Burst Repair", price: "Call for Quote", rating: 5,
brand: "Cosmetic", reviewCount: "1.2k", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/plumbing/service1.avif", imageAlt: "Emergency plumbing leak repair"
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", id: "2", brand: "Installation", name: "Water Heater Systems", price: "From $800", rating: 5,
brand: "Restorative", reviewCount: "850", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/plumbing/service2.avif", imageAlt: "Modern water heater installation"
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", id: "3", brand: "General", name: "Drain & Sewer Cleaning", price: "From $250", rating: 5,
brand: "Advanced", reviewCount: "1.5k", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/plumbing/service3.avif", imageAlt: "Professional drain cleaning services"
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={[ buttons={[
{ text: "Schedule Consultation", href: "#contact" } { text: "Request Service", href: "#contact" }
]} ]}
/> />
</div> </div>
@@ -116,97 +97,52 @@ export default function LuxuryDentistPage() {
<div id="about" data-section="about"> <div id="about" data-section="about">
<InlineImageSplitTextAbout <InlineImageSplitTextAbout
heading={[ heading={[
{ type: "text", content: "Trusted Excellence in Dental Care Across California" } { type: "text", content: "San Diego's Favorite Local Plumbing Experts" }
]} ]}
useInvertedBackground={false} useInvertedBackground={false}
buttons={[ buttons={[
{ text: "Meet Our Team", href: "#testimonials" }, { text: "Our Qualifications", href: "#features" },
{ text: "Learn More", href: "#contact" } { text: "Get In Touch", href: "#contact" }
]} ]}
/> />
</div> </div>
<div id="features" data-section="features"> <div id="features" data-section="features">
<FeatureCardOne <FeatureCardOne
title="Why Choose Our Luxury Practice" title="Why Homeowners Trust Us"
description="We combine artistic excellence with scientific precision, utilizing the latest technology and techniques to deliver transformative results that exceed expectations." description="With local expertise and a commitment to transparency, we keep your home running seamlessly. No surprises, just solid plumbing solutions."
tag="Premium Dental Excellence" tag="Why Choose Us"
tagIcon={Star} tagIcon={ShieldCheck}
textboxLayout="default" textboxLayout="default"
animationType="slide-up" animationType="slide-up"
gridVariant="uniform-all-items-equal" gridVariant="uniform-all-items-equal"
useInvertedBackground={true} useInvertedBackground={true}
features={[ features={[
{ {
title: "Digital Technology", title: "Expert Technicians", description: "All our plumbers are fully licensed, bonded, and trained in the latest industry techniques.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/plumbing/feat1.avif"},
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", title: "Upfront Pricing", description: "We believe in transparency. You get a firm price estimate before any work begins.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/plumbing/feat2.avif"}
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",
}
]} ]}
/> />
</div> </div>
<div id="testimonials" data-section="testimonials"> <div id="testimonials" data-section="testimonials">
<TestimonialCardSix <TestimonialCardSix
title="What Our Patients Say" title="Proven Success Stories"
description="Discover why hundreds of California's discerning patients trust us for their dental care and smile transformations" description="Trusted by thousands of San Diego residents for quality repairs and installations."
tag="Patient Reviews" tag="Reviews"
textboxLayout="default" textboxLayout="default"
useInvertedBackground={false} useInvertedBackground={false}
animationType="slide-up" animationType="slide-up"
testimonials={[ testimonials={[
{ {
id: "1", id: "1", name: "Mark Thompson", handle: "Homeowner", testimonial: "They fixed our main line break in record time. Professional, clean, and extremely helpful team.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/plumbing/t1.avif", imageAlt: "Mark Thompson"
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", id: "2", name: "Elena Rodriguez", handle: "Business Owner", testimonial: "Responsive and honest. Fixed our commercial plumbing issues without disrupting our business flow.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/plumbing/t2.avif", imageAlt: "Elena Rodriguez"
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", id: "3", name: "Sam Jenkins", handle: "Local Resident", testimonial: "Best plumbing experience Ive had. Communication was great and they arrived right on time!", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/plumbing/t3.avif", imageAlt: "Sam Jenkins"
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"
} }
]} ]}
/> />
@@ -214,52 +150,48 @@ export default function LuxuryDentistPage() {
<div id="contact" data-section="contact"> <div id="contact" data-section="contact">
<ContactSplit <ContactSplit
tag="Get In Touch" tag="Get A Quote"
tagIcon={Mail} tagIcon={Mail}
title="Schedule Your Luxury Dental Experience" title="Ready to solve your plumbing problems?"
description="Connect with our team to discuss your smile goals and discover how our personalized treatments can transform your dental health and confidence." description="Contact us today for prompt, reliable, and professional assistance from San Diego's plumbing experts."
background={{ variant: "plain" }} background={{ variant: "plain" }}
useInvertedBackground={true} useInvertedBackground={true}
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/dentist/contact/contact.avif" imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/plumbing/contact.avif"
imageAlt="Comfortable consultation room at our luxury dental practice" imageAlt="Friendly professional staff"
mediaPosition="right" mediaPosition="right"
mediaAnimation="slide-up" mediaAnimation="slide-up"
inputPlaceholder="Enter your email" inputPlaceholder="Enter your email or phone"
buttonText="Get Started" buttonText="Get A Free Quote"
termsText="We respect your privacy. Unsubscribe anytime. Your smile deserves the best care." termsText="We respect your time. Expect a response from us within one hour."
/> />
</div> </div>
<div id="footer" data-section="footer"> <div id="footer" data-section="footer">
<FooterBase <FooterBase
logoText="Luxury Dental Care California" logoText="San Diego Plumbing Pros"
copyrightText="© 2025 Luxury Dental Care | Premium Dentistry Since 2005" copyrightText="© 2025 San Diego Plumbing Pros | Serving the SD Area"
columns={[ columns={[
{ {
title: "Services", title: "Services", items: [
items: [ { label: "Leak Repairs", href: "#services" },
{ label: "Cosmetic Dentistry", href: "#services" }, { label: "Water Heaters", href: "#services" },
{ label: "Dental Implants", href: "#services" }, { label: "Drain Cleaning", href: "#services" },
{ label: "Orthodontics", href: "#services" }, { label: "Commercial", href: "#services" }
{ label: "Restorative Care", href: "#services" }
] ]
}, },
{ {
title: "Practice", title: "Support", items: [
items: [
{ label: "About Us", href: "#about" }, { label: "About Us", href: "#about" },
{ label: "Our Team", href: "#testimonials" }, { label: "Why Choose Us", href: "#features" },
{ label: "Technology", href: "#features" }, { label: "Reviews", href: "#testimonials" },
{ label: "Contact Us", href: "#contact" } { label: "Contact", href: "#contact" }
] ]
}, },
{ {
title: "Connect", title: "Connect", items: [
items: [ { label: "Facebook", href: "#" },
{ label: "Instagram", href: "https://instagram.com" }, { label: "Google Reviews", href: "#" },
{ label: "Facebook", href: "https://facebook.com" }, { label: "Yelp", href: "#" }
{ label: "Google Reviews", href: "https://google.com" },
{ label: "Smile Gallery", href: "#" }
] ]
} }
]} ]}