Compare commits
76 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 56b26fb00d | |||
| f219b31974 | |||
| 435b2a1e1b | |||
| f26d3657df | |||
| ae0c881c85 | |||
| 917bea23c5 | |||
| ea4225e675 | |||
| c69b4eaf02 | |||
| 154278f00b | |||
| d6f515cc2b | |||
| 74aa5a5f22 | |||
| 74f0eaa1c5 | |||
| 0e1a55506d | |||
| c969ec91bd | |||
| dc97e1e79d | |||
| ea7c6294f5 | |||
| 644ba7b534 | |||
| 706154efb5 | |||
| 5a59fe67ee | |||
| fb4d500390 | |||
| de04f42517 | |||
| 25c4172f95 | |||
| 9a5fd69475 | |||
| f80a3db002 | |||
| 985f4e3322 | |||
| 6cf788d209 | |||
| 9f6122cb76 | |||
| 23b310048a | |||
| a79418182f | |||
| eea259f31a | |||
| 0e64335632 | |||
| c9d397ebea | |||
| 7be83d445b | |||
| ce71ad1d72 | |||
| 33b7b59d9c | |||
| 234f0d67d9 | |||
| f183acdb80 | |||
| 7a1aa19456 | |||
| 47fb68d60b | |||
| 5bdf49536d | |||
| 3e4fe55344 | |||
| 9778b5e997 | |||
| bc562c1a7a | |||
| 0344b7829e | |||
| 2eb0b904c7 | |||
| 008713d1c5 | |||
| a780852f93 | |||
| 08bf133456 | |||
| 988bb38a88 | |||
| e35c8b5601 | |||
| fd622a5f72 | |||
| ea68bcf6e5 | |||
| a5d93192da | |||
| aa6bdbf6aa | |||
| d1d4f12884 | |||
| fe8469cf29 | |||
| 58a09ae288 | |||
| e29f5e17a3 | |||
| f669a4e482 | |||
| 0911fbf856 | |||
| 50143d020a | |||
| 816192f6cb | |||
| 0df3884ee9 | |||
| 2a35db8f3b | |||
| d51cd6c2e8 | |||
| 20feeba1a4 | |||
| a10627fcdc | |||
| d4047eda2b | |||
| 088819bd5c | |||
| a6a4c497c3 | |||
| 8c3f6c92cf | |||
| f4a612d78c | |||
| 3a3e9a3cc9 | |||
| e88133f005 | |||
| 3a8d6b3f93 | |||
| ec9f97f396 |
@@ -1,13 +1,17 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Inter } from "next/font/google";
|
import { Geist, Geist_Mono } from "next/font/google";
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
|
|
||||||
const inter = Inter({
|
const geist = Geist({
|
||||||
variable: "--font-inter", subsets: ["latin"],
|
variable: "--font-geist-sans", subsets: ["latin"],
|
||||||
|
});
|
||||||
|
|
||||||
|
const geistMono = Geist_Mono({
|
||||||
|
variable: "--font-geist-mono", subsets: ["latin"],
|
||||||
});
|
});
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "Expert Dental Care - Professional Dental Services", description: "Expert dental care with 20+ years of experience. Comprehensive dental treatments including teeth cleaning, implants, whitening, and more."};
|
title: "EXPERT DENTAL CARE", description: "Expert Dental Care provides comprehensive dental treatments with experienced dentists and advanced technology."};
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
@@ -16,7 +20,7 @@ export default function RootLayout({
|
|||||||
}) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<body className={`${inter.variable}`}>
|
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
|
||||||
{children}
|
{children}
|
||||||
|
|
||||||
<script
|
<script
|
||||||
|
|||||||
161
src/app/page.tsx
161
src/app/page.tsx
@@ -2,12 +2,17 @@
|
|||||||
|
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||||
import HeroBillboard from '@/components/sections/hero/HeroBillboard';
|
import HeroSplitKpi from '@/components/sections/hero/HeroSplitKpi';
|
||||||
import FeatureCardOne from '@/components/sections/feature/FeatureCardOne';
|
import FeatureCardNine from '@/components/sections/feature/FeatureCardNine';
|
||||||
import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout';
|
import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout';
|
||||||
|
import FeatureBorderGlow from '@/components/sections/feature/featureBorderGlow/FeatureBorderGlow';
|
||||||
|
import FeatureCardNineteen from '@/components/sections/feature/FeatureCardNineteen';
|
||||||
|
import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven';
|
||||||
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 FaqDouble from '@/components/sections/faq/FaqDouble';
|
||||||
|
import { Shield, Zap, Heart, DollarSign } from 'lucide-react';
|
||||||
|
|
||||||
const handleAppointmentClick = () => {
|
const handleAppointmentClick = () => {
|
||||||
const contactSection = document.getElementById('contact');
|
const contactSection = document.getElementById('contact');
|
||||||
@@ -45,52 +50,90 @@ export default function LandingPage() {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<HeroBillboard
|
<HeroSplitKpi
|
||||||
title="Expert Care for Your Perfect Smile"
|
title="Expert Care for Your Perfect Smile"
|
||||||
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."
|
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."
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/cheerful-dark-skinned-male-with-afro-hairstyle-keeps-hand-head-laughs-as-has-fun_273609-8514.jpg?_wi=1"
|
background={{ variant: "plain" }}
|
||||||
imageAlt="Patient with beautiful smile"
|
kpis={[
|
||||||
|
{ value: "20+", label: "Years Experience" },
|
||||||
|
{ value: "5000+", label: "Happy Patients" },
|
||||||
|
{ value: "99%", label: "Satisfaction Rate" }
|
||||||
|
]}
|
||||||
|
enableKpiAnimation={true}
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Book Appointment", onClick: handleAppointmentClick },
|
{ text: "Book Appointment", onClick: handleAppointmentClick },
|
||||||
{ text: "Call Now", href: "tel:+1-555-123-4567" }
|
{ text: "Call Now", href: "tel:+1-555-123-4567" }
|
||||||
]}
|
]}
|
||||||
|
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"
|
mediaAnimation="slide-up"
|
||||||
background={{ variant: "plain" }}
|
imagePosition="right"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="services" data-section="services">
|
<div id="services" data-section="services">
|
||||||
<FeatureCardOne
|
<FeatureCardNine
|
||||||
title="Our Dental Services"
|
title="Our Dental Services"
|
||||||
description="Experience world-class dental care with our comprehensive range of treatments designed to meet all your oral health needs"
|
description="Experience world-class dental care with our comprehensive range of treatments designed to meet all your oral health needs"
|
||||||
tag="Services"
|
tag="Services"
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
gridVariant="three-columns-all-equal-width"
|
|
||||||
animationType="slide-up"
|
|
||||||
features={[
|
features={[
|
||||||
{
|
{
|
||||||
title: "Teeth Cleaning", description: "Starting at $99", imageSrc: "http://img.b2bpic.net/free-photo/dental-tools-equipment-white-background_1232-4445.jpg?_wi=1", imageAlt: "Professional teeth cleaning service"
|
id: 1,
|
||||||
|
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" }
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Dental Implants", description: "Starting at $1,500", imageSrc: "http://img.b2bpic.net/free-photo/female-dentist-holding-dental-model-hands-concept-dentistry-dental-treatment_169016-67449.jpg", imageAlt: "Dental implant procedure"
|
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" }
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Teeth Whitening", description: "Starting at $199", imageSrc: "http://img.b2bpic.net/free-photo/sunny-close-up-portrait-pretty-blonde-woman-winking-showing-tongue-playful-positive-mood-pastel-sunny-colors_291049-1275.jpg", imageAlt: "Professional teeth whitening"
|
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" }
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Root Canal Treatment", description: "Starting at $800", imageSrc: "http://img.b2bpic.net/free-photo/old-man-sitting-dentistry-room_1157-19459.jpg", imageAlt: "Root canal treatment"
|
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" }
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Braces / Orthodontics", description: "Starting at $3,000", imageSrc: "http://img.b2bpic.net/free-photo/dentist-taking-selfie-with-patient_23-2148396221.jpg", imageAlt: "Orthodontic braces 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" }
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Cosmetic Dentistry", description: "Starting at $500", imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-stylish-laughing-model-gray-casual-summer-clothes-brown-hat-with-natural-makeup_158538-11648.jpg", imageAlt: "Cosmetic dentistry services"
|
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"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
/>
|
/>
|
||||||
</div>
|
</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"
|
||||||
|
animationType="slide-up"
|
||||||
|
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 id="about" data-section="about">
|
<div id="about" data-section="about">
|
||||||
<InlineImageSplitTextAbout
|
<InlineImageSplitTextAbout
|
||||||
heading={[
|
heading={[
|
||||||
@@ -99,10 +142,96 @@ export default function LandingPage() {
|
|||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Learn More About Our Team", href: "#testimonials" }
|
{ text: "Learn More About Our Team", href: "#testimonials" }
|
||||||
]}
|
]}
|
||||||
|
buttonAnimation="slide-up"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div id="features" data-section="features">
|
||||||
|
<div>
|
||||||
|
<FeatureBorderGlow
|
||||||
|
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: "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: "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: "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."
|
||||||
|
}
|
||||||
|
]}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div id="testimonials" data-section="testimonials">
|
<div id="testimonials" data-section="testimonials">
|
||||||
<TestimonialCardSix
|
<TestimonialCardSix
|
||||||
title="What Our Patients Say"
|
title="What Our Patients Say"
|
||||||
@@ -146,7 +275,7 @@ export default function LandingPage() {
|
|||||||
mediaAnimation="slide-up"
|
mediaAnimation="slide-up"
|
||||||
mediaPosition="right"
|
mediaPosition="right"
|
||||||
inputPlaceholder="Enter your email address"
|
inputPlaceholder="Enter your email address"
|
||||||
buttonText="Schedule Now"
|
buttonText="Check Open Times"
|
||||||
termsText="We respect your privacy. Unsubscribe at any time. By scheduling an appointment, you agree to our terms of service."
|
termsText="We respect your privacy. Unsubscribe at any time. By scheduling an appointment, you agree to our terms of service."
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user