Compare commits
69 Commits
version_8
...
version_18
| Author | SHA1 | Date | |
|---|---|---|---|
| b397ff798f | |||
| cde0047240 | |||
| 251a082eb8 | |||
| 4db830fa7f | |||
| 481d0ac8da | |||
| e69d8edc02 | |||
| 556d8cbfbb | |||
| 97c5e34f2a | |||
| f0bc8f7d93 | |||
| 605aa280ac | |||
| 223937bb93 | |||
| b473f125a6 | |||
| 1a292f3e51 | |||
| e9082bb1cd | |||
| 3bac4d1cbe | |||
| b7d2885494 | |||
| a66dffe60c | |||
| 22b58c6014 | |||
| 78fcc6ba09 | |||
| bb705df069 | |||
| 80dc556783 | |||
| 546529b797 | |||
| 75a0e4afa9 | |||
| 73b2953111 | |||
| 965b2bec33 | |||
| e0ab9cc3b8 | |||
| afdf536b6a | |||
| b9a2270a09 | |||
| effce66e8e | |||
| 9aeb442781 | |||
| 7002ed49d1 | |||
| 06f5bb819d | |||
| 5ddd49871f | |||
| c6851ccc59 | |||
| 4418116a1e | |||
| 5803ea50ea | |||
| 3143b58ff4 | |||
| a153407906 | |||
| b00784086b | |||
| aef6003853 | |||
| af7cae69b8 | |||
| f5e284ffdd | |||
| 637247141e | |||
| 0925738bed | |||
| 4ef6a26429 | |||
| e626b43f38 | |||
| f5f0eb0bd1 | |||
| 0fcefb5dbc | |||
| b4b2904546 | |||
| 1300619f48 | |||
| 2269329df6 | |||
| c88433c216 | |||
| 3529e2459c | |||
| 90d58bcb9a | |||
| b6ae3d743c | |||
| d3fdc50213 | |||
| a590d017c2 | |||
| 92b86e131a | |||
| 4ba0595afa | |||
| 0a920bc5b2 | |||
| 46445016b2 | |||
| 7382a4ec7a | |||
| 135646dc81 | |||
| e09b2027b8 | |||
| 14f3c37815 | |||
| 2357c3476e | |||
| dcdddd700d | |||
| fda4621774 | |||
| 79a8c199bf |
@@ -1,17 +1,15 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Geist, Geist_Mono } from "next/font/google";
|
import { Inter } from "next/font/google";
|
||||||
|
import "./styles/base.css";
|
||||||
|
import "./styles/variables.css";
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
|
|
||||||
const geist = Geist({
|
const inter = Inter({
|
||||||
variable: "--font-geist-sans", subsets: ["latin"],
|
variable: "--font-inter", subsets: ["latin"],
|
||||||
});
|
|
||||||
|
|
||||||
const geistMono = Geist_Mono({
|
|
||||||
variable: "--font-geist-mono", subsets: ["latin"],
|
|
||||||
});
|
});
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "EXPERT DENTAL CARE", description: "Expert Dental Care provides comprehensive dental treatments with experienced dentists and advanced technology."};
|
title: "EXPERT DENTAL CARE - Professional Dental Services", description: "Welcome to EXPERT DENTAL CARE. We provide comprehensive dental treatments including teeth cleaning, dental implants, teeth whitening, root canal treatment, braces, and cosmetic dentistry."};
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
@@ -19,9 +17,21 @@ export default function RootLayout({
|
|||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en">
|
<html lang="en" suppressHydrationWarning>
|
||||||
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
|
<body className={`${inter.variable}`}>
|
||||||
{children}
|
{children}
|
||||||
|
<script
|
||||||
|
dangerouslySetInnerHTML={{
|
||||||
|
__html: `
|
||||||
|
(function() {
|
||||||
|
const theme = localStorage.getItem('theme');
|
||||||
|
if (theme === 'dark' || (!theme && window.matchMedia('(prefers-color-scheme: dark)').matches)) {
|
||||||
|
document.documentElement.classList.add('dark');
|
||||||
|
}
|
||||||
|
})();
|
||||||
|
`,
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
@@ -1392,4 +1402,4 @@ export default function RootLayout({
|
|||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
412
src/app/page.tsx
412
src/app/page.tsx
@@ -1,317 +1,255 @@
|
|||||||
"use client";
|
"use client";
|
||||||
|
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered";
|
||||||
import HeroSplitKpi from '@/components/sections/hero/HeroSplitKpi';
|
import HeroSplitDoubleCarousel from "@/components/sections/hero/HeroSplitDoubleCarousel";
|
||||||
import FeatureCardNine from '@/components/sections/feature/FeatureCardNine';
|
import TextAbout from "@/components/sections/about/TextAbout";
|
||||||
import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout';
|
import FeatureCardSixteen from "@/components/sections/feature/FeatureCardSixteen";
|
||||||
import FeatureBorderGlow from '@/components/sections/feature/featureBorderGlow/FeatureBorderGlow';
|
import PricingCardEight from "@/components/sections/pricing/PricingCardEight";
|
||||||
import FeatureCardNineteen from '@/components/sections/feature/FeatureCardNineteen';
|
import TestimonialCardSix from "@/components/sections/testimonial/TestimonialCardSix";
|
||||||
import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven';
|
import FaqDouble from "@/components/sections/faq/FaqDouble";
|
||||||
import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix';
|
import ContactSplitForm from "@/components/sections/contact/ContactSplitForm";
|
||||||
import ContactSplit from '@/components/sections/contact/ContactSplit';
|
import FooterSimple from "@/components/sections/footer/FooterSimple";
|
||||||
import FooterBase from '@/components/sections/footer/FooterBase';
|
import { Sparkles, CheckCircle, Quote, Twitter, Linkedin } from "lucide-react";
|
||||||
import FaqDouble from '@/components/sections/faq/FaqDouble';
|
|
||||||
import { Shield, Zap, Heart, DollarSign } from 'lucide-react';
|
|
||||||
|
|
||||||
const handleAppointmentClick = () => {
|
export default function Home() {
|
||||||
const contactSection = document.getElementById('contact');
|
|
||||||
if (contactSection) {
|
|
||||||
contactSection.scrollIntoView({ behavior: 'smooth' });
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
export default function LandingPage() {
|
|
||||||
return (
|
return (
|
||||||
<ThemeProvider
|
<ThemeProvider
|
||||||
defaultButtonVariant="text-stagger"
|
defaultButtonVariant="hover-magnetic"
|
||||||
defaultTextAnimation="reveal-blur"
|
defaultTextAnimation="entrance-slide"
|
||||||
borderRadius="pill"
|
borderRadius="rounded"
|
||||||
contentWidth="smallMedium"
|
contentWidth="medium"
|
||||||
sizing="mediumLargeSizeMediumTitles"
|
sizing="medium"
|
||||||
background="circleGradient"
|
background="circleGradient"
|
||||||
cardStyle="layered-gradient"
|
cardStyle="solid"
|
||||||
primaryButtonStyle="primary-glow"
|
primaryButtonStyle="gradient"
|
||||||
secondaryButtonStyle="solid"
|
secondaryButtonStyle="glass"
|
||||||
headingFontWeight="light"
|
headingFontWeight="bold"
|
||||||
>
|
>
|
||||||
<div id="nav" data-section="nav">
|
<div id="nav" data-section="nav">
|
||||||
<NavbarLayoutFloatingInline
|
<NavbarStyleCentered
|
||||||
brandName="EXPERT DENTAL CARE"
|
|
||||||
navItems={[
|
navItems={[
|
||||||
|
{ name: "Home", id: "/" },
|
||||||
{ name: "Services", id: "services" },
|
{ name: "Services", id: "services" },
|
||||||
{ name: "About", id: "about" },
|
{ name: "About", id: "about" },
|
||||||
{ name: "Testimonials", id: "testimonials" },
|
{ name: "Pricing", id: "pricing" },
|
||||||
{ name: "Contact", id: "contact" }
|
{ name: "Contact", id: "contact" },
|
||||||
]}
|
]}
|
||||||
button={{ text: "Book Appointment", onClick: handleAppointmentClick }}
|
button={{ text: "Book Now", href: "contact" }}
|
||||||
animateOnLoad={true}
|
brandName="Expert Dental"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<HeroSplitKpi
|
<HeroSplitDoubleCarousel
|
||||||
title="Expert Care for Your Perfect Smile"
|
background={{ variant: "glowing-orb" }}
|
||||||
description="Welcome to EXPERT DENTAL CARE, where we provide comprehensive dental treatments to help you maintain healthy, beautiful teeth. Our experienced team uses advanced technology to ensure optimal care and comfort for every patient."
|
tag="Professional Care"
|
||||||
background={{ variant: "plain" }}
|
tagIcon={Sparkles}
|
||||||
kpis={[
|
title="Transform Your Smile"
|
||||||
{ value: "20+", label: "Years Experience" },
|
description="Comprehensive dental care solutions with expert professionals and state-of-the-art technology"
|
||||||
{ value: "5000+", label: "Happy Patients" },
|
leftCarouselItems={[
|
||||||
{ value: "99%", label: "Satisfaction Rate" }
|
{
|
||||||
|
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQFSYOeBWG7LyEYTdDfN4zPwli/uploaded-1772928896778-lpxqavdp.png?_wi=1", imageAlt: "Dental treatment 1"},
|
||||||
|
{
|
||||||
|
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQFSYOeBWG7LyEYTdDfN4zPwli/uploaded-1772928896778-lpxqavdp.png?_wi=2", imageAlt: "Dental treatment 2"},
|
||||||
|
{
|
||||||
|
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQFSYOeBWG7LyEYTdDfN4zPwli/uploaded-1772928896778-lpxqavdp.png?_wi=3", imageAlt: "Dental treatment 3"},
|
||||||
|
{
|
||||||
|
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQFSYOeBWG7LyEYTdDfN4zPwli/uploaded-1772928896778-lpxqavdp.png?_wi=4", imageAlt: "Dental treatment 4"},
|
||||||
]}
|
]}
|
||||||
enableKpiAnimation={true}
|
rightCarouselItems={[
|
||||||
buttons={[
|
{
|
||||||
{ text: "Book Appointment", onClick: handleAppointmentClick },
|
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQFSYOeBWG7LyEYTdDfN4zPwli/uploaded-1772928896778-lpxqavdp.png?_wi=5", imageAlt: "Dental service 1"},
|
||||||
{ text: "Call Now", href: "tel:+1-555-123-4567" }
|
{
|
||||||
|
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQFSYOeBWG7LyEYTdDfN4zPwli/uploaded-1772928896778-lpxqavdp.png?_wi=6", imageAlt: "Dental service 2"},
|
||||||
|
{
|
||||||
|
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQFSYOeBWG7LyEYTdDfN4zPwli/uploaded-1772928896778-lpxqavdp.png?_wi=7", imageAlt: "Dental service 3"},
|
||||||
|
{
|
||||||
|
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQFSYOeBWG7LyEYTdDfN4zPwli/uploaded-1772928896778-lpxqavdp.png?_wi=8", imageAlt: "Dental service 4"},
|
||||||
]}
|
]}
|
||||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQFSYOeBWG7LyEYTdDfN4zPwli/uploaded-1772914288718-h4vcoekz.png?_wi=1"
|
|
||||||
imageAlt="Patient with beautiful smile"
|
|
||||||
mediaAnimation="slide-up"
|
|
||||||
imagePosition="right"
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="services" data-section="services">
|
<div id="services" data-section="services">
|
||||||
<FeatureCardNine
|
<FeatureCardSixteen
|
||||||
title="Our Dental Services"
|
negativeCard={{
|
||||||
description="Experience world-class dental care with our comprehensive range of treatments designed to meet all your oral health needs"
|
items: [
|
||||||
tag="Services"
|
"Time-consuming manual processes", "Limited access to specialists", "Higher costs", "Poor communication"],
|
||||||
textboxLayout="default"
|
}}
|
||||||
features={[
|
positiveCard={{
|
||||||
{
|
items: [
|
||||||
id: 1,
|
"Streamlined digital workflows", "Access to expert dentists", "Transparent pricing", "Clear treatment plans"],
|
||||||
title: "Teeth Cleaning", description: "Professional teeth cleaning service - Starting at $99", phoneOne: { imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQFSYOeBWG7LyEYTdDfN4zPwli/uploaded-1772918284947-ravmypqr.png?_wi=1", imageAlt: "Professional teeth cleaning service" },
|
}}
|
||||||
phoneTwo: { imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQFSYOeBWG7LyEYTdDfN4zPwli/uploaded-1772922588141-lzr3asp0.png", imageAlt: "Professional teeth cleaning service" }
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: 2,
|
|
||||||
title: "Dental Implants", description: "Dental implant procedure - Starting at $1,500", phoneOne: { imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQFSYOeBWG7LyEYTdDfN4zPwli/uploaded-1772916731148-bq62oa9t.png", imageAlt: "Dental implant procedure" },
|
|
||||||
phoneTwo: { imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQFSYOeBWG7LyEYTdDfN4zPwli/uploaded-1772916754407-rqt55yk8.jpg", imageAlt: "Dental implant procedure" }
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: 3,
|
|
||||||
title: "Teeth Whitening", description: "Professional teeth whitening - Starting at $199", phoneOne: { imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQFSYOeBWG7LyEYTdDfN4zPwli/uploaded-1772917470635-7x7xoeoe.png", imageAlt: "Professional teeth whitening" },
|
|
||||||
phoneTwo: { imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQFSYOeBWG7LyEYTdDfN4zPwli/uploaded-1772917533721-j9fojxt6.jpg", imageAlt: "Professional teeth whitening" }
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: 4,
|
|
||||||
title: "Root Canal Treatment", description: "Root canal treatment - Starting at $800", phoneOne: { imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQFSYOeBWG7LyEYTdDfN4zPwli/uploaded-1772917906248-gacjsri3.jpg", imageAlt: "Root canal treatment" },
|
|
||||||
phoneTwo: { imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQFSYOeBWG7LyEYTdDfN4zPwli/uploaded-1772917921581-8s7eoz1a.jpg", imageAlt: "Root canal treatment" }
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: 5,
|
|
||||||
title: "Braces / Orthodontics", description: "Orthodontic braces treatment - Starting at $3,000", phoneOne: { imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQFSYOeBWG7LyEYTdDfN4zPwli/uploaded-1772918038084-xc9gz10f.jpg", imageAlt: "Orthodontic braces treatment" },
|
|
||||||
phoneTwo: { imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQFSYOeBWG7LyEYTdDfN4zPwli/uploaded-1772918049445-ej7j9ung.jpg", imageAlt: "Orthodontic braces treatment" }
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: 6,
|
|
||||||
title: "Cosmetic Dentistry", description: "Cosmetic dentistry services - Starting at $500", phoneOne: { imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQFSYOeBWG7LyEYTdDfN4zPwli/uploaded-1772918159223-nrb9uuet.jpg", imageAlt: "Cosmetic dentistry services" },
|
|
||||||
phoneTwo: { imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQFSYOeBWG7LyEYTdDfN4zPwli/uploaded-1772918242335-26ikwom7.jpg", imageAlt: "Cosmetic dentistry services" }
|
|
||||||
}
|
|
||||||
]}
|
|
||||||
showStepNumbers={false}
|
|
||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
useInvertedBackground={false}
|
title="Why Choose Our Dental Services"
|
||||||
/>
|
description="Experience the difference with modern dental care solutions"
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="metrics" data-section="metrics">
|
|
||||||
<MetricCardEleven
|
|
||||||
title="Our Impact"
|
|
||||||
description="See the results we've delivered for our patients"
|
|
||||||
tag="Results"
|
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
animationType="slide-up"
|
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
metrics={[
|
|
||||||
{
|
|
||||||
id: "1", value: "20+", title: "Years in Practice", description: "Decades of trusted dental care", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQFSYOeBWG7LyEYTdDfN4zPwli/uploaded-1772914288718-h4vcoekz.png?_wi=2", imageAlt: "Years of experience"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "2", value: "5000+", title: "Happy Patients", description: "Satisfied smiles every year", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQFSYOeBWG7LyEYTdDfN4zPwli/uploaded-1772914288718-h4vcoekz.png?_wi=3", imageAlt: "Happy patients"
|
|
||||||
}
|
|
||||||
]}
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="about" data-section="about">
|
<div id="about" data-section="about">
|
||||||
<InlineImageSplitTextAbout
|
<TextAbout
|
||||||
heading={[
|
tag="About Us"
|
||||||
{ type: "text", content: "Meet Our Lead Dentist with Over 20 Years of Excellence" }
|
title="Dedicated to Your Oral Health and Beautiful Smile"
|
||||||
]}
|
|
||||||
buttons={[
|
|
||||||
{ text: "Learn More About Our Team", href: "#testimonials" }
|
|
||||||
]}
|
|
||||||
buttonAnimation="slide-up"
|
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="features" data-section="features">
|
<div id="pricing" data-section="pricing">
|
||||||
<div>
|
<PricingCardEight
|
||||||
<FeatureBorderGlow
|
plans={[
|
||||||
title="Why Choose EXPERT DENTAL CARE?"
|
|
||||||
description="We are committed to providing exceptional dental care with a focus on patient comfort and satisfaction"
|
|
||||||
tag="Our Advantages"
|
|
||||||
features={[
|
|
||||||
{
|
|
||||||
title: "Experienced Dentists", description: "Our team consists of highly trained dental professionals with extensive experience in all aspects of modern dentistry", icon: Shield
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: "Advanced Dental Equipment", description: "We invest in cutting-edge dental technology to ensure accurate diagnoses and effective treatments", icon: Zap
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: "Pain-Free Treatment", description: "Patient comfort is our priority. We use modern anesthesia techniques and gentle methods for painless dental care", icon: Heart
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: "Affordable Prices", description: "We offer competitive pricing without compromising on quality of care and service", icon: DollarSign
|
|
||||||
}
|
|
||||||
]}
|
|
||||||
animationType="slide-up"
|
|
||||||
textboxLayout="default"
|
|
||||||
useInvertedBackground={false}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
<div>
|
|
||||||
<FeatureCardNineteen
|
|
||||||
title="Our Core Strengths"
|
|
||||||
description="The qualities that set us apart"
|
|
||||||
tag="Excellence"
|
|
||||||
features={[
|
|
||||||
{
|
|
||||||
id: 1,
|
|
||||||
title: "Patient-Centered Care", description: "Your comfort and satisfaction are our top priorities in every procedure", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQFSYOeBWG7LyEYTdDfN4zPwli/uploaded-1772920945060-uuv27r5h.png?_wi=1", imageAlt: "Patient care", tag: "Care", subtitle: "Priority"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: 2,
|
|
||||||
title: "Proven Results", description: "Years of successful treatments and happy patients speak to our expertise", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQFSYOeBWG7LyEYTdDfN4zPwli/uploaded-1772920945060-uuv27r5h.png?_wi=2", imageAlt: "Results", tag: "Results", subtitle: "Success"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: 3,
|
|
||||||
title: "Cutting-Edge Technology", description: "We use the latest dental innovations for better outcomes", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQFSYOeBWG7LyEYTdDfN4zPwli/uploaded-1772920945060-uuv27r5h.png?_wi=3", imageAlt: "Technology", tag: "Innovation", subtitle: "Modern"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: 4,
|
|
||||||
title: "Personalized Approach", description: "Every patient gets a customized treatment plan tailored to their needs", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQFSYOeBWG7LyEYTdDfN4zPwli/uploaded-1772920945060-uuv27r5h.png?_wi=4", imageAlt: "Personalized care", tag: "Custom", subtitle: "Tailored"
|
|
||||||
}
|
|
||||||
]}
|
|
||||||
textboxLayout="default"
|
|
||||||
useInvertedBackground={false}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="faq" data-section="faq">
|
|
||||||
<FaqDouble
|
|
||||||
title="Frequently Asked Questions"
|
|
||||||
description="Find answers to common questions about our dental services and procedures"
|
|
||||||
tag="FAQ"
|
|
||||||
textboxLayout="default"
|
|
||||||
faqsAnimation="slide-up"
|
|
||||||
useInvertedBackground={false}
|
|
||||||
faqs={[
|
|
||||||
{
|
{
|
||||||
id: "1", title: "How often should I visit the dentist?", content: "We recommend visiting your dentist at least twice a year for routine check-ups and cleanings. However, if you have specific dental concerns or gum disease, more frequent visits may be necessary. Our team will create a personalized care plan based on your individual needs."
|
id: "1", badge: "Starter", price: "$99", subtitle: "Essential dental care", buttons: [{ text: "Get Started", href: "contact" }],
|
||||||
|
features: [
|
||||||
|
"Regular check-ups", "Teeth cleaning", "Basic X-rays", "Emergency care"],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "2", title: "Is teeth whitening safe?", content: "Yes, professional teeth whitening is safe when performed by our trained dental professionals. We use proven whitening techniques and monitor the process carefully to ensure your teeth and gums are protected. Results typically last 6-12 months depending on your habits."
|
id: "2", badge: "Most Popular", badgeIcon: Sparkles,
|
||||||
|
price: "$199", subtitle: "Comprehensive care", buttons: [{ text: "Get Started", href: "contact" }],
|
||||||
|
features: [
|
||||||
|
"Everything in Starter", "Teeth whitening", "Cavity fillings", "Root canal treatment", "Priority scheduling"],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "3", title: "What are the signs I need a root canal?", content: "Common signs include severe tooth pain, sensitivity to hot or cold temperatures, discoloration of the tooth, or swelling and tenderness in nearby gums. If you experience any of these symptoms, contact us for an examination. Early detection can often prevent the need for more extensive treatment."
|
id: "3", badge: "Premium", price: "$299", subtitle: "Complete smile makeover", buttons: [{ text: "Get Started", href: "contact" }],
|
||||||
|
features: [
|
||||||
|
"Everything in Comprehensive", "Cosmetic dentistry", "Dental implants", "Braces & aligners", "24/7 support"],
|
||||||
},
|
},
|
||||||
{
|
|
||||||
id: "4", title: "How long does a dental implant last?", content: "With proper care and maintenance, dental implants can last a lifetime. They are made of titanium, which fuses with your jawbone, creating a permanent replacement for missing teeth. Good oral hygiene and regular dental visits are essential for long-term success."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "5", title: "Are you accepting new patients?", content: "Yes, we are always welcoming new patients! We believe in providing comprehensive care to our community. To schedule your first appointment, simply call us or use our online booking system. We look forward to helping you achieve your best smile."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "6", title: "What payment options do you accept?", content: "We accept all major credit cards, debit cards, and cash. We also offer payment plans to make dental care more accessible. Our team can discuss financing options during your consultation to find a solution that works best for you."
|
|
||||||
}
|
|
||||||
]}
|
]}
|
||||||
|
animationType="slide-up"
|
||||||
|
title="Our Pricing Plans"
|
||||||
|
description="Choose the perfect plan for your dental needs"
|
||||||
|
textboxLayout="default"
|
||||||
|
useInvertedBackground={false}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="testimonials" data-section="testimonials">
|
<div id="testimonials" data-section="testimonials">
|
||||||
<TestimonialCardSix
|
<TestimonialCardSix
|
||||||
title="What Our Patients Say"
|
|
||||||
description="Read real testimonials from satisfied patients who have experienced our excellent dental care"
|
|
||||||
textboxLayout="default"
|
|
||||||
animationType="slide-up"
|
|
||||||
useInvertedBackground={false}
|
|
||||||
testimonials={[
|
testimonials={[
|
||||||
{
|
{
|
||||||
id: "1", name: "Sarah Johnson", handle: "Patient since 2019", testimonial: "Dr. Smith and his team are absolutely fantastic! They made my teeth whitening experience pain-free and the results exceeded my expectations. Highly recommend!", imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-young-woman-hair-stylist_23-2148113070.jpg", imageAlt: "Sarah Johnson"
|
id: "1", name: "Sarah Johnson", handle: "@sarah.j", testimonial:
|
||||||
},
|
"Amazing experience! The team is professional and caring. My teeth have never looked better.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQFSYOeBWG7LyEYTdDfN4zPwli/uploaded-1772928896778-lpxqavdp.png?_wi=9", imageAlt: "Sarah Johnson"},
|
||||||
{
|
{
|
||||||
id: "2", name: "Michael Chen", handle: "Patient since 2020", testimonial: "I had my dental implant done here and couldn't be happier. The entire process was professional and the staff was incredibly caring throughout.", imageSrc: "http://img.b2bpic.net/free-photo/selective-focus-male-dentist-process-curing-teeth_651396-1697.jpg", imageAlt: "Michael Chen"
|
id: "2", name: "Michael Chen", handle: "@m.chen", testimonial:
|
||||||
},
|
"Best dental care I've received. The staff made me feel comfortable and the results speak for themselves.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQFSYOeBWG7LyEYTdDfN4zPwli/uploaded-1772928896778-lpxqavdp.png?_wi=10", imageAlt: "Michael Chen"},
|
||||||
{
|
{
|
||||||
id: "3", name: "Emily Rodriguez", handle: "Patient since 2018", testimonial: "The best dental clinic I've ever been to! They use advanced equipment and really take time to explain everything. My family goes here too!", imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-cute-girlfriend-giggle-reading-notebook-holding-planner-smiling-camera_1258-201148.jpg", imageAlt: "Emily Rodriguez"
|
id: "3", name: "Emily Rodriguez", handle: "@emily.r", testimonial:
|
||||||
},
|
"Professional, friendly, and affordable. Highly recommend to anyone looking for quality dental care.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQFSYOeBWG7LyEYTdDfN4zPwli/uploaded-1772928896778-lpxqavdp.png?_wi=11", imageAlt: "Emily Rodriguez"},
|
||||||
{
|
{
|
||||||
id: "4", name: "David Kim", handle: "Patient since 2021", testimonial: "Had root canal treatment here and was nervous, but the team made me feel comfortable. Pain-free procedure and excellent aftercare instructions.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-senior-man_23-2149207197.jpg", imageAlt: "David Kim"
|
id: "4", name: "David Thompson", handle: "@d.thompson", testimonial:
|
||||||
},
|
"The implant procedure was seamless. I'm thrilled with my new smile!", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQFSYOeBWG7LyEYTdDfN4zPwli/uploaded-1772928896778-lpxqavdp.png?_wi=12", imageAlt: "David Thompson"},
|
||||||
{
|
{
|
||||||
id: "5", name: "Jessica Thompson", handle: "Patient since 2017", testimonial: "My orthodontic journey with EXPERT DENTAL CARE was amazing. Professional team, beautiful smile results. Worth every penny!", imageSrc: "http://img.b2bpic.net/free-photo/smiling-female-doctor-holding-medical-reports_107420-73971.jpg", imageAlt: "Jessica Thompson"
|
id: "5", name: "Jessica Lee", handle: "@jessica.lee", testimonial:
|
||||||
},
|
"After years of dental anxiety, this practice made me feel safe and cared for.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQFSYOeBWG7LyEYTdDfN4zPwli/uploaded-1772928896778-lpxqavdp.png?_wi=13", imageAlt: "Jessica Lee"},
|
||||||
{
|
{
|
||||||
id: "6", name: "Robert Martinez", handle: "Patient since 2019", testimonial: "Regular patient for years now. Consistent quality, friendly staff, and fair prices. This is my go-to dental clinic for all my family's needs.", imageSrc: "http://img.b2bpic.net/free-photo/cheerful-gay-pride-lgbt-festival_53876-71008.jpg", imageAlt: "Robert Martinez"
|
id: "6", name: "Robert Wilson", handle: "@r.wilson", testimonial:
|
||||||
}
|
"The cosmetic dentistry work exceeded my expectations. Worth every penny!", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQFSYOeBWG7LyEYTdDfN4zPwli/uploaded-1772928896778-lpxqavdp.png?_wi=14", imageAlt: "Robert Wilson"},
|
||||||
|
{
|
||||||
|
id: "7", name: "Amanda Martinez", handle: "@amanda.m", testimonial:
|
||||||
|
"Whitening treatment gave me the bright smile I've always wanted.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQFSYOeBWG7LyEYTdDfN4zPwli/uploaded-1772928896778-lpxqavdp.png?_wi=15", imageAlt: "Amanda Martinez"},
|
||||||
|
{
|
||||||
|
id: "8", name: "Christopher Blake", handle: "@c.blake", testimonial:
|
||||||
|
"Professional staff and state-of-the-art equipment. Highly satisfied!", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQFSYOeBWG7LyEYTdDfN4zPwli/uploaded-1772928896778-lpxqavdp.png?_wi=16", imageAlt: "Christopher Blake"},
|
||||||
]}
|
]}
|
||||||
speed={40}
|
animationType="slide-up"
|
||||||
|
title="What Our Patients Say"
|
||||||
|
description="Real experiences from our satisfied patients"
|
||||||
|
textboxLayout="default"
|
||||||
|
useInvertedBackground={false}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="faq" data-section="faq">
|
||||||
|
<FaqDouble
|
||||||
|
faqs={[
|
||||||
|
{
|
||||||
|
id: "1", title: "What are your office hours?", content:
|
||||||
|
"We are open Monday through Friday from 8:00 AM to 6:00 PM, and Saturday from 9:00 AM to 2:00 PM. We are closed on Sundays and major holidays."},
|
||||||
|
{
|
||||||
|
id: "2", title: "Do you accept insurance?", content:
|
||||||
|
"Yes, we accept most major dental insurance plans. Please contact us to verify your specific coverage."},
|
||||||
|
{
|
||||||
|
id: "3", title: "What is your cancellation policy?", content:
|
||||||
|
"We require at least 24 hours notice for cancellations. Cancellations made less than 24 hours before your appointment may incur a fee."},
|
||||||
|
{
|
||||||
|
id: "4", title: "Are emergency appointments available?", content:
|
||||||
|
"Yes, we offer emergency dental care. Please call our office immediately for urgent dental issues."},
|
||||||
|
{
|
||||||
|
id: "5", title: "How often should I visit the dentist?", content:
|
||||||
|
"Most people should visit the dentist every 6 months for regular check-ups and cleanings. Some patients with specific conditions may need more frequent visits."},
|
||||||
|
{
|
||||||
|
id: "6", title: "Do you offer payment plans?", content:
|
||||||
|
"Yes, we offer flexible payment plans to make dental care more affordable. Ask our staff about available options."},
|
||||||
|
]}
|
||||||
|
title="Frequently Asked Questions"
|
||||||
|
description="Find answers to common questions about our services"
|
||||||
|
faqsAnimation="slide-up"
|
||||||
|
textboxLayout="default"
|
||||||
|
useInvertedBackground={false}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="contact" data-section="contact">
|
<div id="contact" data-section="contact">
|
||||||
<ContactSplit
|
<ContactSplitForm
|
||||||
tag="Get In Touch"
|
title="Get In Touch"
|
||||||
title="Book Your Appointment Today"
|
description="Have questions? We'd love to hear from you. Send us a message and we'll respond as soon as possible."
|
||||||
description="Schedule your next dental visit with us. Our friendly team is ready to help you achieve your perfect smile."
|
inputs={[
|
||||||
background={{ variant: "plain" }}
|
{
|
||||||
|
name: "name", type: "text", placeholder: "Your Name", required: true,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "email", type: "email", placeholder: "Your Email", required: true,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "phone", type: "tel", placeholder: "Your Phone", required: false,
|
||||||
|
},
|
||||||
|
]}
|
||||||
|
textarea={{
|
||||||
|
name: "message", placeholder: "Your Message", rows: 5,
|
||||||
|
required: true,
|
||||||
|
}}
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/happy-man-welcoming-lady-sitting-sofa-holding-digital-tablet_23-2147879153.jpg?_wi=2"
|
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQFSYOeBWG7LyEYTdDfN4zPwli/uploaded-1772928896778-lpxqavdp.png?_wi=17"
|
||||||
imageAlt="Modern dental clinic"
|
|
||||||
mediaAnimation="slide-up"
|
mediaAnimation="slide-up"
|
||||||
mediaPosition="right"
|
mediaPosition="right"
|
||||||
inputPlaceholder="Enter your email address"
|
buttonText="Send Message"
|
||||||
buttonText="Check Open Times"
|
onSubmit={(data) => console.log("Form submitted:", data)}
|
||||||
termsText="We respect your privacy. Unsubscribe at any time. By scheduling an appointment, you agree to our terms of service."
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="footer" data-section="footer">
|
<div id="footer" data-section="footer">
|
||||||
<FooterBase
|
<FooterSimple
|
||||||
logoText="EXPERT DENTAL CARE"
|
|
||||||
columns={[
|
columns={[
|
||||||
|
{
|
||||||
|
title: "Quick Links", items: [
|
||||||
|
{ label: "Home", href: "/" },
|
||||||
|
{ label: "Services", href: "#services" },
|
||||||
|
{ label: "About", href: "#about" },
|
||||||
|
{ label: "Pricing", href: "#pricing" },
|
||||||
|
],
|
||||||
|
},
|
||||||
{
|
{
|
||||||
title: "Services", items: [
|
title: "Services", items: [
|
||||||
{ label: "Teeth Cleaning", href: "#services" },
|
{ label: "Teeth Cleaning", href: "#services" },
|
||||||
{ label: "Dental Implants", href: "#services" },
|
{ label: "Dental Implants", href: "#services" },
|
||||||
{ label: "Teeth Whitening", href: "#services" },
|
{ label: "Teeth Whitening", href: "#services" },
|
||||||
{ label: "Root Canal", href: "#services" }
|
{ label: "Root Canal", href: "#services" },
|
||||||
]
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Company", items: [
|
title: "Support", items: [
|
||||||
{ label: "About Us", href: "#about" },
|
{ label: "FAQ", href: "#faq" },
|
||||||
{ label: "Testimonials", href: "#testimonials" },
|
|
||||||
{ label: "Contact", href: "#contact" },
|
{ label: "Contact", href: "#contact" },
|
||||||
{ label: "Book Appointment", href: "#contact" }
|
{ label: "Privacy", href: "#" },
|
||||||
]
|
{ label: "Terms", href: "#" },
|
||||||
|
],
|
||||||
},
|
},
|
||||||
{
|
|
||||||
title: "Contact", items: [
|
|
||||||
{ label: "Phone: +1-555-123-4567", href: "tel:+1-555-123-4567" },
|
|
||||||
{ label: "Email: info@expertdentalcare.com", href: "mailto:info@expertdentalcare.com" },
|
|
||||||
{ label: "Monday-Friday: 9AM-6PM", href: "#" },
|
|
||||||
{ label: "Saturday: 10AM-4PM", href: "#" }
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]}
|
]}
|
||||||
copyrightText="© 2026 EXPERT DENTAL CARE. All rights reserved."
|
bottomLeftText="© 2025 Expert Dental Care. All rights reserved."
|
||||||
|
bottomRightText="Made with care for your smile"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user