Merge version_2 into main #1
113
src/app/about-us/page.tsx
Normal file
113
src/app/about-us/page.tsx
Normal file
@@ -0,0 +1,113 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
import TextSplitAbout from '@/components/sections/about/TextSplitAbout';
|
||||
import TeamCardTwo from '@/components/sections/team/TeamCardTwo';
|
||||
import FooterBase from '@/components/sections/footer/FooterBase';
|
||||
import { Users, Briefcase } from 'lucide-react'; // Assuming Users or Briefcase might be suitable icons
|
||||
|
||||
export default function AboutUsPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="text-stagger"
|
||||
defaultTextAnimation="reveal-blur"
|
||||
borderRadius="pill"
|
||||
contentWidth="smallMedium"
|
||||
sizing="mediumLargeSizeMediumTitles"
|
||||
background="aurora"
|
||||
cardStyle="layered-gradient"
|
||||
primaryButtonStyle="primary-glow"
|
||||
secondaryButtonStyle="solid"
|
||||
headingFontWeight="light"
|
||||
>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
brandName="Luxury Dental Care"
|
||||
navItems={[
|
||||
{ name: "Home", href: "/" },
|
||||
{ name: "Services", href: "/#services" },
|
||||
{ name: "About Us", href: "/about-us" },
|
||||
{ name: "Reviews", href: "/reviews" },
|
||||
{ name: "Contact", href: "/contact-us" }
|
||||
]}
|
||||
button={{
|
||||
text: "Schedule Consultation", href: "/contact-us"
|
||||
}}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="about-story" data-section="about-story">
|
||||
<TextSplitAbout
|
||||
title="Our Story: Built on Honesty and Transparency"
|
||||
description={[
|
||||
"At Luxury Dental Care, our foundation is built on unwavering honesty and complete transparency. We believe that exceptional dental care begins with trust, and we're dedicated to clearly communicating every step of your treatment journey.", "Our patient-first philosophy ensures that your comfort, understanding, and oral health goals are always our top priority. We listen, we educate, and we empower you to make informed decisions about your smile.", "We are committed to delivering not just beautiful smiles, but a genuinely positive and reassuring experience from your very first consultation to your final result."
|
||||
]}
|
||||
useInvertedBackground={false}
|
||||
buttons={[
|
||||
{ text: "Our Commitment", href: "/contact-us" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="team" data-section="team">
|
||||
<TeamCardTwo
|
||||
title="Meet Our Dedicated Team of Dental Professionals"
|
||||
description="Our highly skilled and compassionate team of dentists, hygienists, and support staff are committed to providing you with personalized, top-tier care in a luxurious environment."
|
||||
tag="Expert Hands, Caring Hearts"
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
animationType="slide-up"
|
||||
useInvertedBackground={true}
|
||||
members={[
|
||||
{
|
||||
id: "1", name: "Dr. Emily White", role: "Lead Dentist", description: "Specializing in cosmetic dentistry and smile makeovers, Dr. White brings artistry and precision to every patient.", imageSrc: "/templates/dentist/team/team1.avif", imageAlt: "Dr. Emily White"
|
||||
},
|
||||
{
|
||||
id: "2", name: "Dr. Michael Lee", role: "Restorative Specialist", description: "With extensive experience in dental implants and reconstructive procedures, Dr. Lee restores function and beauty.", imageSrc: "/templates/dentist/team/team2.avif", imageAlt: "Dr. Michael Lee"
|
||||
},
|
||||
{
|
||||
id: "3", name: "Sarah Chen, RDH", role: "Head Hygienist", description: "Sarah ensures optimal oral health with gentle yet thorough cleanings and patient education on preventive care.", imageSrc: "/templates/dentist/team/team3.avif", imageAlt: "Sarah Chen"
|
||||
},
|
||||
{
|
||||
id: "4", name: "David Rodriguez", role: "Dental Technician", description: "David's expertise in crafting custom veneers and crowns guarantees perfect fit and aesthetic harmony.", imageSrc: "/templates/dentist/team/team4.avif", imageAlt: "David Rodriguez"
|
||||
}
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBase
|
||||
logoText="Luxury Dental Care California"
|
||||
copyrightText="© 2025 Luxury Dental Care | Premium Dentistry Since 2005"
|
||||
columns={[
|
||||
{
|
||||
title: "Services", items: [
|
||||
{ label: "Cosmetic Dentistry", href: "/#services" },
|
||||
{ label: "Dental Implants", href: "/#services" },
|
||||
{ label: "Orthodontics", href: "/#services" },
|
||||
{ label: "Restorative Care", href: "/#services" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Practice", items: [
|
||||
{ label: "About Us", href: "/about-us" },
|
||||
{ label: "Our Team", href: "/about-us" },
|
||||
{ label: "Reviews", href: "/reviews" },
|
||||
{ label: "Technology", href: "/#features" },
|
||||
{ label: "Contact Us", href: "/contact-us" }
|
||||
]
|
||||
},
|
||||
{
|
||||
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: "#" }
|
||||
]
|
||||
}
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
107
src/app/page.tsx
107
src/app/page.tsx
@@ -35,8 +35,7 @@ export default function LuxuryDentistPage() {
|
||||
{ name: "Contact", id: "contact" }
|
||||
]}
|
||||
button={{
|
||||
text: "Schedule Consultation",
|
||||
href: "#contact"
|
||||
text: "Schedule Consultation", href: "#contact"
|
||||
}}
|
||||
/>
|
||||
</div>
|
||||
@@ -77,34 +76,16 @@ export default function LuxuryDentistPage() {
|
||||
useInvertedBackground={true}
|
||||
products={[
|
||||
{
|
||||
id: "1",
|
||||
brand: "Cosmetic",
|
||||
name: "Smile Design & Whitening",
|
||||
price: "From $500",
|
||||
rating: 5,
|
||||
reviewCount: "234",
|
||||
imageSrc: "/templates/dentist/services/service1.avif",
|
||||
imageAlt: "Cosmetic smile design consultation"
|
||||
id: "1", brand: "Cosmetic", name: "Smile Design & Whitening", price: "From $500", rating: 5,
|
||||
reviewCount: "234", imageSrc: "/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: "/templates/dentist/services/service2.avif",
|
||||
imageAlt: "Advanced dental implant technology"
|
||||
id: "2", brand: "Restorative", name: "Dental Implants & Crowns", price: "From $1,200", rating: 5,
|
||||
reviewCount: "312", imageSrc: "/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: "/templates/dentist/services/service3.avif",
|
||||
imageAlt: "Clear aligner orthodontic treatment"
|
||||
id: "3", brand: "Advanced", name: "Orthodontics & Aligners", price: "From $800", rating: 5,
|
||||
reviewCount: "289", imageSrc: "/templates/dentist/services/service3.avif", imageAlt: "Clear aligner orthodontic treatment"
|
||||
}
|
||||
]}
|
||||
buttons={[
|
||||
@@ -138,15 +119,9 @@ export default function LuxuryDentistPage() {
|
||||
useInvertedBackground={true}
|
||||
features={[
|
||||
{
|
||||
title: "Digital Technology",
|
||||
description: "3D imaging, intraoral cameras, and computer-aided design for precise diagnostics and treatment planning",
|
||||
imageSrc: "/templates/dentist/about/about1.avif",
|
||||
},
|
||||
title: "Digital Technology", description: "3D imaging, intraoral cameras, and computer-aided design for precise diagnostics and treatment planning", imageSrc: "/templates/dentist/about/about1.avif"},
|
||||
{
|
||||
title: "Master Craftsmanship",
|
||||
description: "Award-winning dentists with decades of experience in cosmetic and restorative excellence",
|
||||
imageSrc: "/templates/dentist/about/about2.avif",
|
||||
}
|
||||
title: "Master Craftsmanship", description: "Award-winning dentists with decades of experience in cosmetic and restorative excellence", imageSrc: "/templates/dentist/about/about2.avif"}
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -161,52 +136,22 @@ export default function LuxuryDentistPage() {
|
||||
animationType="slide-up"
|
||||
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: "/templates/luxury-travel-agency/testimonial/testimonial1.webp",
|
||||
imageAlt: "Jennifer Martinez"
|
||||
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: "/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: "/templates/luxury-travel-agency/testimonial/testimonial2.webp",
|
||||
imageAlt: "Robert Chen"
|
||||
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: "/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: "/templates/luxury-travel-agency/testimonial/testimonial3.webp",
|
||||
imageAlt: "Sarah Williams"
|
||||
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: "/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: "/templates/skincare/image5.avif",
|
||||
imageAlt: "Michael Torres"
|
||||
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: "/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: "/templates/skincare/image6.avif",
|
||||
imageAlt: "Amanda Rodriguez"
|
||||
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: "/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: "/templates/skincare/image7.avif",
|
||||
imageAlt: "David Kim"
|
||||
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: "/templates/skincare/image7.avif", imageAlt: "David Kim"
|
||||
}
|
||||
]}
|
||||
/>
|
||||
@@ -233,11 +178,10 @@ export default function LuxuryDentistPage() {
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBase
|
||||
logoText="Luxury Dental Care California"
|
||||
copyrightText="© 2025 Luxury Dental Care | Premium Dentistry Since 2005"
|
||||
copyrightText="© 2025 Luxury Dental Care. All rights reserved."
|
||||
columns={[
|
||||
{
|
||||
title: "Services",
|
||||
items: [
|
||||
title: "Services", items: [
|
||||
{ label: "Cosmetic Dentistry", href: "#services" },
|
||||
{ label: "Dental Implants", href: "#services" },
|
||||
{ label: "Orthodontics", href: "#services" },
|
||||
@@ -245,21 +189,22 @@ export default function LuxuryDentistPage() {
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Practice",
|
||||
items: [
|
||||
title: "Practice", items: [
|
||||
{ label: "About Us", href: "#about" },
|
||||
{ label: "Our Team", href: "#testimonials" },
|
||||
{ label: "Technology", href: "#features" },
|
||||
{ label: "Contact Us", href: "#contact" }
|
||||
{ label: "Technology", href: "#features" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Connect",
|
||||
items: [
|
||||
title: "Contact & Connect", items: [
|
||||
{ label: "Schedule a Visit", href: "#contact" },
|
||||
{ label: "Call Us: (555) 123-4567", href: "tel:+15551234567" },
|
||||
{ label: "Address: 123 Luxury Lane, Beverly Hills, CA 90210", href: "#" },
|
||||
{ label: "Hours: Mon-Fri: 9 AM - 6 PM", href: "#" },
|
||||
{ label: "Service Area: Greater California Area", href: "#" },
|
||||
{ label: "Instagram", href: "https://instagram.com" },
|
||||
{ label: "Facebook", href: "https://facebook.com" },
|
||||
{ label: "Google Reviews", href: "https://google.com" },
|
||||
{ label: "Smile Gallery", href: "#" }
|
||||
{ label: "Google Reviews", href: "https://google.com" }
|
||||
]
|
||||
}
|
||||
]}
|
||||
|
||||
106
src/app/reviews/page.tsx
Normal file
106
src/app/reviews/page.tsx
Normal file
@@ -0,0 +1,106 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo';
|
||||
import FooterBase from '@/components/sections/footer/FooterBase';
|
||||
import { Star, MessageSquare } from 'lucide-react';
|
||||
|
||||
export default function ReviewsPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="text-stagger"
|
||||
defaultTextAnimation="reveal-blur"
|
||||
borderRadius="pill"
|
||||
contentWidth="smallMedium"
|
||||
sizing="mediumLargeSizeMediumTitles"
|
||||
background="aurora"
|
||||
cardStyle="layered-gradient"
|
||||
primaryButtonStyle="primary-glow"
|
||||
secondaryButtonStyle="solid"
|
||||
headingFontWeight="light"
|
||||
>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
brandName="Luxury Dental Care"
|
||||
navItems={[
|
||||
{ name: "Home", href: "/" },
|
||||
{ name: "Services", href: "/#services" },
|
||||
{ name: "About Us", href: "/about-us" },
|
||||
{ name: "Reviews", href: "/reviews" },
|
||||
{ name: "Contact", href: "/contact-us" }
|
||||
]}
|
||||
button={{
|
||||
text: "Schedule Consultation", href: "/contact-us"
|
||||
}}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="testimonials-full" data-section="testimonials-full">
|
||||
<TestimonialCardTwo
|
||||
title="What Our Valued Customers Say"
|
||||
description="Join 116 happy customers with a 4.9-star rating! Read their stories and see why we're trusted for honest solutions and quick, reliable service."
|
||||
tag="Customer Testimonials"
|
||||
tagIcon={Star}
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
animationType="slide-up"
|
||||
testimonials={[
|
||||
{
|
||||
id: "1", name: "Bailey Cowan", role: "Satisfied Client", testimonial: "Luxury Dental Care provided such honest solutions and transparent advice. It's refreshing to find a dental practice that truly prioritizes patient well-being over everything else. Highly recommend for their integrity!", imageSrc: "/templates/user-placeholder.avif", imageAlt: "Bailey Cowan"
|
||||
},
|
||||
{
|
||||
id: "2", name: "Cory Costa", role: "Homeowner", testimonial: "My water heater broke unexpectedly, and Luxury Dental Care's partner services were incredibly quick and efficient. They saved the day with their rapid response and expert help! I couldn't be more grateful.", imageSrc: "/templates/user-placeholder.avif", imageAlt: "Cory Costa"
|
||||
},
|
||||
{
|
||||
id: "3", name: "Jennifer Martinez", role: "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: "/templates/luxury-travel-agency/testimonial/testimonial1.webp", imageAlt: "Jennifer Martinez"
|
||||
},
|
||||
{
|
||||
id: "4", name: "Robert Chen", role: "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: "/templates/luxury-travel-agency/testimonial/testimonial2.webp", imageAlt: "Robert Chen"
|
||||
},
|
||||
{
|
||||
id: "5", name: "Sarah Williams", role: "Entertainment Industry", testimonial: "This is the place where art meets science. My smile transformation has been life-changing. The expertise here is unmatched.", imageSrc: "/templates/luxury-travel-agency/testimonial/testimonial3.webp", imageAlt: "Sarah Williams"
|
||||
},
|
||||
{
|
||||
id: "6", name: "Michael Torres", role: "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: "/templates/skincare/image5.avif", imageAlt: "Michael Torres"
|
||||
}
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBase
|
||||
logoText="Luxury Dental Care California"
|
||||
copyrightText="© 2025 Luxury Dental Care | Premium Dentistry Since 2005"
|
||||
columns={[
|
||||
{
|
||||
title: "Services", items: [
|
||||
{ label: "Cosmetic Dentistry", href: "/#services" },
|
||||
{ label: "Dental Implants", href: "/#services" },
|
||||
{ label: "Orthodontics", href: "/#services" },
|
||||
{ label: "Restorative Care", href: "/#services" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Practice", items: [
|
||||
{ label: "About Us", href: "/about-us" },
|
||||
{ label: "Our Team", href: "/about-us" },
|
||||
{ label: "Reviews", href: "/reviews" },
|
||||
{ label: "Technology", href: "/#features" },
|
||||
{ label: "Contact Us", href: "/contact-us" }
|
||||
]
|
||||
},
|
||||
{
|
||||
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: "#" }
|
||||
]
|
||||
}
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
122
src/app/services/page.tsx
Normal file
122
src/app/services/page.tsx
Normal file
@@ -0,0 +1,122 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
import FeatureCardSeven from '@/components/sections/feature/FeatureCardSeven';
|
||||
import ContactSplit from '@/components/sections/contact/ContactSplit';
|
||||
import FooterBase from '@/components/sections/footer/FooterBase';
|
||||
import { Wrench, Mail } from 'lucide-react';
|
||||
|
||||
export default function ServicesPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="text-stagger"
|
||||
defaultTextAnimation="reveal-blur"
|
||||
borderRadius="pill"
|
||||
contentWidth="smallMedium"
|
||||
sizing="mediumLargeSizeMediumTitles"
|
||||
background="aurora"
|
||||
cardStyle="layered-gradient"
|
||||
primaryButtonStyle="primary-glow"
|
||||
secondaryButtonStyle="solid"
|
||||
headingFontWeight="light"
|
||||
>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
brandName="Luxury Dental Care"
|
||||
navItems={[
|
||||
{ name: "Home", href: "/" },
|
||||
{ name: "Services", href: "/services" },
|
||||
{ name: "About", href: "/#about" },
|
||||
{ name: "Contact", href: "/#contact" }
|
||||
]}
|
||||
button={{
|
||||
text: "Schedule Consultation", href: "/#contact"
|
||||
}}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="services" data-section="services">
|
||||
<FeatureCardSeven
|
||||
title="Comprehensive Plumbing Services"
|
||||
description="Your trusted partner for all residential and commercial plumbing needs. We deliver reliable, high-quality solutions with exceptional customer service."
|
||||
tag="Reliable Plumbing Solutions"
|
||||
tagIcon={Wrench}
|
||||
textboxLayout="default"
|
||||
animationType="slide-up"
|
||||
gridVariant="two-items-per-row"
|
||||
useInvertedBackground={true}
|
||||
features={[
|
||||
{
|
||||
id: 1,
|
||||
title: "24/7 Emergency Plumbing", description: "Unexpected plumbing emergencies can strike at any time. Our rapid response team is available 24/7 to address your urgent plumbing needs with speed and expertise, minimizing damage and restoring peace of mind. We handle burst pipes, severe leaks, overflowing toilets, and more.", imageSrc: "/templates/dentist/contact/contact.avif", imageAlt: "Emergency plumbing service in action", buttons: [{ text: "Call Now", href: "/#contact" }]
|
||||
},
|
||||
{
|
||||
id: 2,
|
||||
title: "Water Heater Services", description: "From minor repairs to complete system replacements, our certified technicians ensure your home has a consistent supply of hot water. We handle all types and brands, including traditional tank and modern tankless water heaters, ensuring energy efficiency and optimal performance.", imageSrc: "/templates/dentist/services/service2.avif", imageAlt: "Technician repairing a water heater", buttons: [{ text: "Get a Quote", href: "/#contact" }]
|
||||
},
|
||||
{
|
||||
id: 3,
|
||||
title: "Leak Detection & Repair", description: "Don't let hidden leaks cause costly damage. We use state-of-the-art acoustic and thermal imaging technology to accurately detect leaks in walls, slabs, and pipes, providing efficient and non-invasive repair solutions to protect your property.", imageSrc: "/templates/dentist/hero/hero1.avif", imageAlt: "Leak detection equipment", buttons: [{ text: "Schedule Inspection", href: "/#contact" }]
|
||||
},
|
||||
{
|
||||
id: 4,
|
||||
title: "Professional Drain Cleaning", description: "Clogged drains are no match for our professional cleaning services. We clear stubborn blockages, remove grease and debris, and prevent future issues using advanced techniques like hydro-jetting and camera inspections, ensuring your plumbing system flows smoothly.", imageSrc: "/templates/dentist/services/service3.avif", imageAlt: "Drain cleaning process", buttons: [{ text: "Book Cleaning", href: "/#contact" }]
|
||||
}
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactSplit
|
||||
tag="Get In Touch"
|
||||
tagIcon={Mail}
|
||||
title="Schedule Your Plumbing Service"
|
||||
description="Connect with our team to discuss your plumbing needs and discover how our personalized solutions can keep your home running smoothly."
|
||||
background={{ variant: "plain" }}
|
||||
useInvertedBackground={false}
|
||||
imageSrc="/templates/dentist/contact/contact.avif"
|
||||
imageAlt="Comfortable consultation room at our luxury dental practice"
|
||||
mediaPosition="right"
|
||||
mediaAnimation="slide-up"
|
||||
inputPlaceholder="Enter your email"
|
||||
buttonText="Get Started"
|
||||
termsText="We respect your privacy. Unsubscribe anytime. Your plumbing solution is just a click away."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBase
|
||||
logoText="Luxury Dental Care California"
|
||||
copyrightText="© 2025 Luxury Dental Care | Premium Dentistry Since 2005"
|
||||
columns={[
|
||||
{
|
||||
title: "Services", items: [
|
||||
{ label: "Emergency Plumbing", href: "/services" },
|
||||
{ label: "Water Heater Repair", href: "/services" },
|
||||
{ label: "Leak Detection", href: "/services" },
|
||||
{ label: "Drain Cleaning", href: "/services" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Practice", items: [
|
||||
{ label: "About Us", href: "/#about" },
|
||||
{ label: "Our Team", href: "/#testimonials" },
|
||||
{ label: "Technology", href: "/#features" },
|
||||
{ label: "Contact Us", href: "/#contact" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Connect", items: [
|
||||
{ label: "Instagram", href: "https://instagram.com" },
|
||||
{ label: "Facebook", href: "https://facebook.com" },
|
||||
{ label: "Google Reviews", href: "https://google.com" },
|
||||
{ label: "Service Gallery", href: "#" }
|
||||
]
|
||||
}
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
@@ -11,7 +11,7 @@ html {
|
||||
body {
|
||||
background-color: var(--background);
|
||||
color: var(--foreground);
|
||||
font-family: var(--font-inter-tight), sans-serif;
|
||||
font-family: var(--font-manrope), sans-serif;
|
||||
position: relative;
|
||||
min-height: 100vh;
|
||||
overscroll-behavior: none;
|
||||
@@ -24,5 +24,5 @@ h3,
|
||||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
font-family: var(--font-inter-tight), sans-serif;
|
||||
font-family: var(--font-manrope), sans-serif;
|
||||
}
|
||||
|
||||
@@ -10,15 +10,15 @@
|
||||
--accent: #ffffff;
|
||||
--background-accent: #ffffff; */
|
||||
|
||||
--background: #f7f6f7;
|
||||
--card: #ffffff;
|
||||
--foreground: #0c1325;
|
||||
--primary-cta: #0798ff;
|
||||
--background: #F8F8F8;
|
||||
--card: #EFEFEF;
|
||||
--foreground: #1C1C1C;
|
||||
--primary-cta: #1E4D8C;
|
||||
--primary-cta-text: #f7f6f7;
|
||||
--secondary-cta: #ffffff;
|
||||
--secondary-cta: #F8F8F8;
|
||||
--secondary-cta-text: #0c1325;
|
||||
--accent: #93c7ff;
|
||||
--background-accent: #a8cde8;
|
||||
--accent: #D9534F;
|
||||
--background-accent: #D1D1D1;
|
||||
|
||||
/* text sizing - set by ThemeProvider */
|
||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||
|
||||
Reference in New Issue
Block a user