Merge version_1 into main #2
293
src/app/page.tsx
293
src/app/page.tsx
@@ -26,218 +26,99 @@ export default function LandingPage() {
|
||||
headingFontWeight="extrabold"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "About",
|
||||
id: "about",
|
||||
},
|
||||
{
|
||||
name: "Services",
|
||||
id: "features",
|
||||
},
|
||||
{
|
||||
name: "Testimonials",
|
||||
id: "testimonials",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "contact",
|
||||
},
|
||||
]}
|
||||
brandName="EverGreen Dental"
|
||||
/>
|
||||
</div>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Services", id: "features" },
|
||||
{ name: "Testimonials", id: "testimonials" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
]}
|
||||
brandName="EverGreen Dental"
|
||||
button={{ text: "Book Now", href: "#contact" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroOverlay
|
||||
title="Your Smile, Our Priority."
|
||||
description="State-of-the-art dental care in a comfortable, modern environment. Experience personalized treatment plans tailored to your dental health needs."
|
||||
buttons={[
|
||||
{
|
||||
text: "Book an Appointment",
|
||||
href: "#contact",
|
||||
},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/close-up-dentist-instruments_23-2151042869.jpg"
|
||||
imageAlt="Modern dental clinic treatment room"
|
||||
/>
|
||||
</div>
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroOverlay
|
||||
title="Your Smile, Our Priority."
|
||||
description="State-of-the-art dental care in a comfortable, modern environment. Experience personalized treatment plans tailored to your dental health needs."
|
||||
buttons={[{ text: "Book an Appointment", href: "#contact" }]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/close-up-dentist-instruments_23-2151042869.jpg"
|
||||
imageAlt="Modern dental clinic treatment room"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="about" data-section="about">
|
||||
<AboutMetric
|
||||
useInvertedBackground={false}
|
||||
title="Clinical Excellence"
|
||||
metrics={[
|
||||
{
|
||||
icon: Award,
|
||||
label: "Years Experience",
|
||||
value: "20+",
|
||||
},
|
||||
{
|
||||
icon: Users,
|
||||
label: "Happy Patients",
|
||||
value: "15k+",
|
||||
},
|
||||
{
|
||||
icon: Smile,
|
||||
label: "Successful Smiles",
|
||||
value: "10k+",
|
||||
},
|
||||
]}
|
||||
metricsAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
<div id="about" data-section="about">
|
||||
<AboutMetric
|
||||
useInvertedBackground={false}
|
||||
title="Clinical Excellence"
|
||||
metrics={[
|
||||
{ icon: Award, label: "Years Experience", value: "20+" },
|
||||
{ icon: Users, label: "Happy Patients", value: "15k+" },
|
||||
{ icon: Smile, label: "Successful Smiles", value: "10k+" },
|
||||
]}
|
||||
metricsAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="features" data-section="features">
|
||||
<FeatureCardMedia
|
||||
animationType="slide-up"
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
id: "f1",
|
||||
title: "General Dentistry",
|
||||
description: "Preventive exams, cleanings, and digital diagnostics.",
|
||||
tag: "Essential",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/male-doctor-talking-patient-showing-dental-jaw_23-2147862033.jpg",
|
||||
},
|
||||
{
|
||||
id: "f2",
|
||||
title: "Advanced Implants",
|
||||
description: "Permanent solutions for missing teeth using advanced technology.",
|
||||
tag: "Specialized",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/dentists-holding-dental-tools_107420-65567.jpg",
|
||||
},
|
||||
{
|
||||
id: "f3",
|
||||
title: "Orthodontics",
|
||||
description: "Expert teeth alignment and smile correction treatments.",
|
||||
tag: "Cosmetic",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/female-patient-having-procedure-done-dentist_23-2148985788.jpg",
|
||||
},
|
||||
]}
|
||||
title="Professional Dental Services"
|
||||
description="We offer comprehensive oral health services to maintain your perfect smile."
|
||||
/>
|
||||
</div>
|
||||
<div id="features" data-section="features">
|
||||
<FeatureCardMedia
|
||||
animationType="slide-up"
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{ id: "f1", title: "General Dentistry", description: "Preventive exams, cleanings, and digital diagnostics.", tag: "Essential", imageSrc: "http://img.b2bpic.net/free-photo/male-doctor-talking-patient-showing-dental-jaw_23-2147862033.jpg" },
|
||||
{ id: "f2", title: "Advanced Implants", description: "Permanent solutions for missing teeth using advanced technology.", tag: "Specialized", imageSrc: "http://img.b2bpic.net/free-photo/dentists-holding-dental-tools_107420-65567.jpg" },
|
||||
{ id: "f3", title: "Orthodontics", description: "Expert teeth alignment and smile correction treatments.", tag: "Cosmetic", imageSrc: "http://img.b2bpic.net/free-photo/female-patient-having-procedure-done-dentist_23-2148985788.jpg" },
|
||||
]}
|
||||
title="Professional Dental Services"
|
||||
description="We offer comprehensive oral health services to maintain your perfect smile."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardTwo
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "t1",
|
||||
name: "Alice M.",
|
||||
role: "Patient",
|
||||
testimonial: "The best clinic I've been to. Very gentle and professional staff.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/joyful-beautiful-blonde-woman-wearing-white-shirt-standing-co-working-space-leaning-desk_74855-15168.jpg?_wi=1",
|
||||
},
|
||||
{
|
||||
id: "t2",
|
||||
name: "Robert B.",
|
||||
role: "Patient",
|
||||
testimonial: "Excellent service and state-of-the-art facilities. My teeth have never felt better.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/sportswoman-smiling-listening-music_23-2147600806.jpg",
|
||||
},
|
||||
{
|
||||
id: "t3",
|
||||
name: "Sarah K.",
|
||||
role: "Patient",
|
||||
testimonial: "I was anxious about dental visits, but they made me feel completely at ease.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-hispanic-man-having-conversation-talking-smartphone-leaning-wall_839833-27543.jpg",
|
||||
},
|
||||
{
|
||||
id: "t4",
|
||||
name: "Mark D.",
|
||||
role: "Patient",
|
||||
testimonial: "Professional, clean, and highly effective. Highly recommend their implant services.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/adult-man-woman-working-together_23-2148461552.jpg",
|
||||
},
|
||||
{
|
||||
id: "t5",
|
||||
name: "Elena R.",
|
||||
role: "Patient",
|
||||
testimonial: "Such a warm atmosphere. The team explains every step clearly and effectively.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/joyful-beautiful-blonde-woman-wearing-white-shirt-standing-co-working-space-leaning-desk_74855-15168.jpg?_wi=2",
|
||||
},
|
||||
]}
|
||||
title="What Our Patients Say"
|
||||
description="Real stories from our patients about their experiences with us."
|
||||
/>
|
||||
</div>
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardTwo
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{ id: "t1", name: "Alice M.", role: "Patient", testimonial: "The best clinic I've been to. Very gentle and professional staff.", imageSrc: "http://img.b2bpic.net/free-photo/joyful-beautiful-blonde-woman-wearing-white-shirt-standing-co-working-space-leaning-desk_74855-15168.jpg" },
|
||||
{ id: "t2", name: "Robert B.", role: "Patient", testimonial: "Excellent service and state-of-the-art facilities. My teeth have never felt better.", imageSrc: "http://img.b2bpic.net/free-photo/sportswoman-smiling-listening-music_23-2147600806.jpg" },
|
||||
{ id: "t3", name: "Sarah K.", role: "Patient", testimonial: "I was anxious about dental visits, but they made me feel completely at ease.", imageSrc: "http://img.b2bpic.net/free-photo/young-hispanic-man-having-conversation-talking-smartphone-leaning-wall_839833-27543.jpg" },
|
||||
{ id: "t4", name: "Mark D.", role: "Patient", testimonial: "Professional, clean, and highly effective. Highly recommend their implant services.", imageSrc: "http://img.b2bpic.net/free-photo/adult-man-woman-working-together_23-2148461552.jpg" },
|
||||
{ id: "t5", name: "Elena R.", role: "Patient", testimonial: "Such a warm atmosphere. The team explains every step clearly and effectively.", imageSrc: "http://img.b2bpic.net/free-photo/joyful-beautiful-blonde-woman-wearing-white-shirt-standing-co-working-space-leaning-desk_74855-15168.jpg" },
|
||||
]}
|
||||
title="What Our Patients Say"
|
||||
description="Real stories from our patients about their experiences with us."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactFaq
|
||||
animationType="slide-up"
|
||||
useInvertedBackground={false}
|
||||
faqs={[
|
||||
{
|
||||
id: "faq1",
|
||||
title: "Do you accept insurance?",
|
||||
content: "Yes, we accept most major dental insurance plans.",
|
||||
},
|
||||
{
|
||||
id: "faq2",
|
||||
title: "How often should I get a checkup?",
|
||||
content: "We recommend every 6 months for a clean and healthy mouth.",
|
||||
},
|
||||
{
|
||||
id: "faq3",
|
||||
title: "Can I book online?",
|
||||
content: "Yes, you can schedule your appointment through our contact form.",
|
||||
},
|
||||
]}
|
||||
ctaTitle="Book Your Visit"
|
||||
ctaDescription="Ready to take care of your oral health? Contact our team today."
|
||||
ctaButton={{
|
||||
text: "Schedule Consultation",
|
||||
href: "#",
|
||||
}}
|
||||
ctaIcon={Calendar}
|
||||
/>
|
||||
</div>
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactFaq
|
||||
animationType="slide-up"
|
||||
useInvertedBackground={false}
|
||||
faqs={[
|
||||
{ id: "faq1", title: "Do you accept insurance?", content: "Yes, we accept most major dental insurance plans." },
|
||||
{ id: "faq2", title: "How often should I get a checkup?", content: "We recommend every 6 months for a clean and healthy mouth." },
|
||||
{ id: "faq3", title: "Can I book online?", content: "Yes, you can schedule your appointment through our contact form." },
|
||||
]}
|
||||
ctaTitle="Book Your Visit"
|
||||
ctaDescription="Ready to take care of your oral health? Contact our team today."
|
||||
ctaButton={{ text: "Schedule Consultation", href: "#" }}
|
||||
ctaIcon={Calendar}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBase
|
||||
columns={[
|
||||
{
|
||||
title: "Quick Links",
|
||||
items: [
|
||||
{
|
||||
label: "Services",
|
||||
href: "#features",
|
||||
},
|
||||
{
|
||||
label: "About",
|
||||
href: "#about",
|
||||
},
|
||||
{
|
||||
label: "Testimonials",
|
||||
href: "#testimonials",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Legal",
|
||||
items: [
|
||||
{
|
||||
label: "Privacy Policy",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Terms of Service",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
]}
|
||||
logoText="EverGreen Dental"
|
||||
/>
|
||||
</div>
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBase
|
||||
columns={[
|
||||
{ title: "Quick Links", items: [{ label: "Services", href: "#features" }, { label: "About", href: "#about" }, { label: "Testimonials", href: "#testimonials" }] },
|
||||
{ title: "Legal", items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }] },
|
||||
]}
|
||||
logoText="EverGreen Dental"
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user