Merge version_1 into main
Merge version_1 into main
This commit was merged in pull request #2.
This commit is contained in:
397
src/app/page.tsx
397
src/app/page.tsx
@@ -28,287 +28,140 @@ export default function LandingPage() {
|
||||
headingFontWeight="light"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "hero",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "about",
|
||||
},
|
||||
{
|
||||
name: "Services",
|
||||
id: "services",
|
||||
},
|
||||
{
|
||||
name: "Testimonials",
|
||||
id: "testimonials",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "contact",
|
||||
},
|
||||
]}
|
||||
brandName="Dr. Shahanas' Dental"
|
||||
/>
|
||||
</div>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{ name: "Home", id: "hero" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Services", id: "services" },
|
||||
{ name: "Testimonials", id: "testimonials" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
]}
|
||||
brandName="Dr. Shahanas' Dental"
|
||||
button={{ text: "Book Now", href: "#contact" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroLogo
|
||||
logoText="Dr. Shahanas' Dental Care"
|
||||
description="Excellence in family dentistry. Providing compassionate care and modern treatments for your most beautiful smile."
|
||||
buttons={[
|
||||
{
|
||||
text: "Book Appointment",
|
||||
href: "#contact",
|
||||
},
|
||||
{
|
||||
text: "Our Services",
|
||||
href: "#services",
|
||||
},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/female-dentist-scanning-patient-s-teeth-with-x-ray-machine-modern-dental-clinic_23-2147879124.jpg?_wi=1"
|
||||
imageAlt="Modern dental clinic environment"
|
||||
/>
|
||||
</div>
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroLogo
|
||||
logoText="Dr. Shahanas' Dental Care"
|
||||
description="Excellence in family dentistry. Providing compassionate care and modern treatments for your most beautiful smile."
|
||||
buttons={[
|
||||
{ text: "Book Appointment", href: "#contact" },
|
||||
{ text: "Our Services", href: "#services" },
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/female-dentist-scanning-patient-s-teeth-with-x-ray-machine-modern-dental-clinic_23-2147879124.jpg"
|
||||
imageAlt="Modern dental clinic environment"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="about" data-section="about">
|
||||
<TextSplitAbout
|
||||
useInvertedBackground={true}
|
||||
title="Your Trusted Dental Partner"
|
||||
description={[
|
||||
"Dr. Shahanas' Dental Care is dedicated to providing high-quality, painless dental experiences. With years of experience and a passion for oral health, our practice combines advanced technology with a warm, caring atmosphere to ensure you leave with a healthy smile.",
|
||||
"We specialize in family dentistry, restorative care, and cosmetic treatments tailored to your unique needs.",
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="about" data-section="about">
|
||||
<TextSplitAbout
|
||||
useInvertedBackground={true}
|
||||
title="Your Trusted Dental Partner"
|
||||
description={[
|
||||
"Dr. Shahanas' Dental Care is dedicated to providing high-quality, painless dental experiences. With years of experience and a passion for oral health, our practice combines advanced technology with a warm, caring atmosphere to ensure you leave with a healthy smile.", "We specialize in family dentistry, restorative care, and cosmetic treatments tailored to your unique needs."]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="services" data-section="services">
|
||||
<FeatureCardTwelve
|
||||
animationType="slide-up"
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
id: "s1",
|
||||
label: "01",
|
||||
title: "Preventive Care",
|
||||
items: [
|
||||
"Regular Checkups",
|
||||
"Oral Cancer Screening",
|
||||
"Professional Cleaning",
|
||||
],
|
||||
},
|
||||
{
|
||||
id: "s2",
|
||||
label: "02",
|
||||
title: "Restorative Care",
|
||||
items: [
|
||||
"Dental Crowns",
|
||||
"Bridge Repair",
|
||||
"Tooth Fillings",
|
||||
],
|
||||
},
|
||||
{
|
||||
id: "s3",
|
||||
label: "03",
|
||||
title: "Cosmetic Smile",
|
||||
items: [
|
||||
"Professional Whitening",
|
||||
"Veneers",
|
||||
"Smile Design",
|
||||
],
|
||||
},
|
||||
]}
|
||||
title="Comprehensive Dental Services"
|
||||
description="We offer a wide range of specialized dental procedures to keep your teeth healthy and your smile radiant."
|
||||
/>
|
||||
</div>
|
||||
<div id="services" data-section="services">
|
||||
<FeatureCardTwelve
|
||||
animationType="slide-up"
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{ id: "s1", label: "01", title: "Preventive Care", items: ["Regular Checkups", "Oral Cancer Screening", "Professional Cleaning"] },
|
||||
{ id: "s2", label: "02", title: "Restorative Care", items: ["Dental Crowns", "Bridge Repair", "Tooth Fillings"] },
|
||||
{ id: "s3", label: "03", title: "Cosmetic Smile", items: ["Professional Whitening", "Veneers", "Smile Design"] },
|
||||
]}
|
||||
title="Comprehensive Dental Services"
|
||||
description="We offer a wide range of specialized dental procedures to keep your teeth healthy and your smile radiant."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="metrics" data-section="metrics">
|
||||
<MetricCardSeven
|
||||
animationType="slide-up"
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={true}
|
||||
metrics={[
|
||||
{
|
||||
id: "m1",
|
||||
value: "15+",
|
||||
title: "Years Experience",
|
||||
items: [
|
||||
"Experienced care",
|
||||
"Clinical history",
|
||||
],
|
||||
},
|
||||
{
|
||||
id: "m2",
|
||||
value: "5k+",
|
||||
title: "Happy Patients",
|
||||
items: [
|
||||
"Satisfied smiles",
|
||||
"Trusted by community",
|
||||
],
|
||||
},
|
||||
{
|
||||
id: "m3",
|
||||
value: "99%",
|
||||
title: "Satisfaction Rate",
|
||||
items: [
|
||||
"High standard",
|
||||
"Quality outcomes",
|
||||
],
|
||||
},
|
||||
]}
|
||||
title="Proven Quality Metrics"
|
||||
description="Dedicated to excellence with consistent high ratings and healthy patient outcomes."
|
||||
/>
|
||||
</div>
|
||||
<div id="metrics" data-section="metrics">
|
||||
<MetricCardSeven
|
||||
animationType="slide-up"
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={true}
|
||||
metrics={[
|
||||
{ id: "m1", value: "15+", title: "Years Experience", items: ["Experienced care", "Clinical history"] },
|
||||
{ id: "m2", value: "5k+", title: "Happy Patients", items: ["Satisfied smiles", "Trusted by community"] },
|
||||
{ id: "m3", value: "99%", title: "Satisfaction Rate", items: ["High standard", "Quality outcomes"] },
|
||||
]}
|
||||
title="Proven Quality Metrics"
|
||||
description="Dedicated to excellence with consistent high ratings and healthy patient outcomes."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardTwelve
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "t1",
|
||||
name: "Sarah Miller",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-dentist-office-smiling_23-2148338134.jpg",
|
||||
},
|
||||
{
|
||||
id: "t2",
|
||||
name: "John Doe",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-male-working-nurse_23-2150829865.jpg",
|
||||
},
|
||||
{
|
||||
id: "t3",
|
||||
name: "Anna Wright",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-young-woman-sitting-dental-chair_23-2147862029.jpg",
|
||||
},
|
||||
{
|
||||
id: "t4",
|
||||
name: "Mike Smith",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-view-smiling-woman-with-green-eyes-patches-home_197531-32439.jpg",
|
||||
},
|
||||
{
|
||||
id: "t5",
|
||||
name: "Linda Gray",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/closeup-happy-middle-aged-woman-leaning-wall_1262-1743.jpg",
|
||||
},
|
||||
]}
|
||||
cardTitle="Patient Reviews"
|
||||
cardTag="Our Reputation"
|
||||
cardAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardTwelve
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{ id: "t1", name: "Sarah Miller", imageSrc: "http://img.b2bpic.net/free-photo/woman-dentist-office-smiling_23-2148338134.jpg" },
|
||||
{ id: "t2", name: "John Doe", imageSrc: "http://img.b2bpic.net/free-photo/portrait-male-working-nurse_23-2150829865.jpg" },
|
||||
{ id: "t3", name: "Anna Wright", imageSrc: "http://img.b2bpic.net/free-photo/happy-young-woman-sitting-dental-chair_23-2147862029.jpg" },
|
||||
{ id: "t4", name: "Mike Smith", imageSrc: "http://img.b2bpic.net/free-photo/close-up-view-smiling-woman-with-green-eyes-patches-home_197531-32439.jpg" },
|
||||
{ id: "t5", name: "Linda Gray", imageSrc: "http://img.b2bpic.net/free-photo/closeup-happy-middle-aged-woman-leaning-wall_1262-1743.jpg" },
|
||||
]}
|
||||
cardTitle="Patient Reviews"
|
||||
cardTag="Our Reputation"
|
||||
cardAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="social" data-section="social">
|
||||
<SocialProofOne
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={true}
|
||||
names={[
|
||||
"Dental Board Certified",
|
||||
"Global Health Org",
|
||||
"National Dental Union",
|
||||
"Hospital Network",
|
||||
"Clinic Excellence Award",
|
||||
"Research Center",
|
||||
"Community Health Partner",
|
||||
]}
|
||||
title="Trusted Partners & Affiliations"
|
||||
description="Proudly working with leading dental and health organizations to provide the best care."
|
||||
/>
|
||||
</div>
|
||||
<div id="social" data-section="social">
|
||||
<SocialProofOne
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={true}
|
||||
names={["Dental Board Certified", "Global Health Org", "National Dental Union", "Hospital Network", "Clinic Excellence Award", "Research Center", "Community Health Partner"]}
|
||||
title="Trusted Partners & Affiliations"
|
||||
description="Proudly working with leading dental and health organizations to provide the best care."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="faq" data-section="faq">
|
||||
<FaqSplitMedia
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
faqs={[
|
||||
{
|
||||
id: "q1",
|
||||
title: "How often should I have a cleaning?",
|
||||
content: "Generally twice a year for healthy patients.",
|
||||
},
|
||||
{
|
||||
id: "q2",
|
||||
title: "Do you offer emergency dental?",
|
||||
content: "Yes, we handle emergencies promptly.",
|
||||
},
|
||||
{
|
||||
id: "q3",
|
||||
title: "Is the procedure painless?",
|
||||
content: "We prioritize comfort with modern anesthesia.",
|
||||
},
|
||||
]}
|
||||
title="Frequently Asked Questions"
|
||||
description="Have questions? We're here to provide clear, helpful answers."
|
||||
faqsAnimation="slide-up"
|
||||
mediaAnimation="slide-up"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/female-dentist-scanning-patient-s-teeth-with-x-ray-machine-modern-dental-clinic_23-2147879124.jpg?_wi=2"
|
||||
imageAlt="Dental equipment and consultation setup"
|
||||
/>
|
||||
</div>
|
||||
<div id="faq" data-section="faq">
|
||||
<FaqSplitMedia
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
faqs={[
|
||||
{ id: "q1", title: "How often should I have a cleaning?", content: "Generally twice a year for healthy patients." },
|
||||
{ id: "q2", title: "Do you offer emergency dental?", content: "Yes, we handle emergencies promptly." },
|
||||
{ id: "q3", title: "Is the procedure painless?", content: "We prioritize comfort with modern anesthesia." },
|
||||
]}
|
||||
title="Frequently Asked Questions"
|
||||
description="Have questions? We're here to provide clear, helpful answers."
|
||||
faqsAnimation="slide-up"
|
||||
mediaAnimation="slide-up"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/female-dentist-scanning-patient-s-teeth-with-x-ray-machine-modern-dental-clinic_23-2147879124.jpg"
|
||||
imageAlt="Dental equipment and consultation setup"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactSplit
|
||||
useInvertedBackground={true}
|
||||
background={{
|
||||
variant: "animated-grid",
|
||||
}}
|
||||
title="Schedule Your Visit"
|
||||
description="Book a consultation with Dr. Shahanas today. Your healthiest smile is just a call away."
|
||||
imageSrc="http://img.b2bpic.net/free-photo/japanese-house-entrance-trees_23-2149301040.jpg"
|
||||
buttonText="Book Now"
|
||||
tag="Get In Touch"
|
||||
imageAlt="Dr. Shahanas dental clinic entrance"
|
||||
mediaAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactSplit
|
||||
useInvertedBackground={true}
|
||||
background={{ variant: "animated-grid" }}
|
||||
title="Schedule Your Visit"
|
||||
description="Book a consultation with Dr. Shahanas today. Your healthiest smile is just a call away."
|
||||
imageSrc="http://img.b2bpic.net/free-photo/japanese-house-entrance-trees_23-2149301040.jpg"
|
||||
buttonText="Book Now"
|
||||
tag="Get In Touch"
|
||||
imageAlt="Dr. Shahanas dental clinic entrance"
|
||||
mediaAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseReveal
|
||||
logoText="Dr. Shahanas' Dental"
|
||||
columns={[
|
||||
{
|
||||
title: "Quick Links",
|
||||
items: [
|
||||
{
|
||||
label: "About",
|
||||
href: "#about",
|
||||
},
|
||||
{
|
||||
label: "Services",
|
||||
href: "#services",
|
||||
},
|
||||
{
|
||||
label: "Contact",
|
||||
href: "#contact",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Info",
|
||||
items: [
|
||||
{
|
||||
label: "Privacy Policy",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "FAQ",
|
||||
href: "#faq",
|
||||
},
|
||||
{
|
||||
label: "Appointments",
|
||||
href: "#contact",
|
||||
},
|
||||
],
|
||||
},
|
||||
]}
|
||||
copyrightText="© 2024 Dr. Shahanas' Dental Care. All rights reserved."
|
||||
/>
|
||||
</div>
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseReveal
|
||||
logoText="Dr. Shahanas' Dental"
|
||||
columns={[
|
||||
{ title: "Quick Links", items: [{ label: "About", href: "#about" }, { label: "Services", href: "#services" }, { label: "Contact", href: "#contact" }] },
|
||||
{ title: "Info", items: [{ label: "Privacy Policy", href: "#" }, { label: "FAQ", href: "#faq" }, { label: "Appointments", href: "#contact" }] },
|
||||
]}
|
||||
copyrightText="© 2024 Dr. Shahanas' Dental Care. All rights reserved."
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user