8 Commits

Author SHA1 Message Date
f30e94e936 Update src/app/page.tsx 2026-03-08 10:46:33 +00:00
98d8b52478 Merge version_8 into main
Merge version_8 into main
2026-03-08 10:36:20 +00:00
96f557f286 Update src/app/page.tsx 2026-03-08 10:36:15 +00:00
3d64413b54 Switch to version 6: modified src/app/page.tsx 2026-03-08 10:31:53 +00:00
eed3790354 Merge version_7 into main
Merge version_7 into main
2026-03-08 10:30:10 +00:00
7c34188a85 Update src/app/page.tsx 2026-03-08 10:30:06 +00:00
6dfe80283a Merge version_6 into main
Merge version_6 into main
2026-03-08 10:27:13 +00:00
6ef673ee06 Merge version_6 into main
Merge version_6 into main
2026-03-08 10:26:28 +00:00

View File

@@ -9,10 +9,18 @@ import FeatureCardNine from '@/components/sections/feature/FeatureCardNine';
import FeatureCardNineteen from '@/components/sections/feature/FeatureCardNineteen';
import FeatureCardMedia from '@/components/sections/feature/FeatureCardMedia';
import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix';
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
import ContactSplit from '@/components/sections/contact/ContactSplit';
import FooterBase from '@/components/sections/footer/FooterBase';
export default function LandingPage() {
const handleBookAppointment = () => {
const contactSection = document.getElementById('contact');
if (contactSection) {
contactSection.scrollIntoView({ behavior: 'smooth' });
}
};
return (
<ThemeProvider
defaultButtonVariant="text-stagger"
@@ -35,7 +43,7 @@ export default function LandingPage() {
{ name: "Features", id: "features" },
{ name: "Testimonials", id: "testimonials" }
]}
button={{ text: "Book Appointment", href: "#contact" }}
button={{ text: "Book Appointment", onClick: handleBookAppointment }}
animateOnLoad={true}
/>
</div>
@@ -54,7 +62,7 @@ export default function LandingPage() {
tag="Expert Dental Care"
tagAnimation="slide-up"
buttons={[
{ text: "Book Appointment", href: "#contact" },
{ text: "Book Appointment", onClick: handleBookAppointment },
{ text: "Learn More", href: "#features" }
]}
buttonAnimation="slide-up"
@@ -112,7 +120,7 @@ export default function LandingPage() {
]}
useInvertedBackground={false}
buttons={[
{ text: "Book with Dr. Padmasri", href: "#contact" }
{ text: "Book with Dr. Padmasri", onClick: handleBookAppointment }
]}
buttonAnimation="slide-up"
/>
@@ -235,6 +243,42 @@ export default function LandingPage() {
/>
</div>
<div id="faq" data-section="faq">
<FaqSplitMedia
title="Frequently Asked Questions"
description="Find answers to common questions about our dental services and treatments."
tag="Help & Support"
tagAnimation="slide-up"
textboxLayout="default"
useInvertedBackground={false}
faqsAnimation="slide-up"
mediaPosition="left"
imageSrc="http://img.b2bpic.net/free-photo/dentist-showing-x-ray-patient_107420-65382.jpg?_wi=1"
imageAlt="FAQ support"
mediaAnimation="slide-up"
faqs={[
{
id: "1", title: "What qualifications does Dr. Padmasri have?", content: "Dr. Padmasri is an MDS (Master of Dental Surgery) specialist in endodontics with over 10 years of clinical experience in general, restorative, cosmetic, and advanced dental procedures."
},
{
id: "2", title: "What is the consultation fee?", content: "Our consultation fee is ₹250. During the consultation, Dr. Padmasri will examine your teeth, discuss your concerns, and recommend a personalized treatment plan."
},
{
id: "3", title: "What are your clinic hours?", content: "We are open Monday to Sunday from 10 AM to 9 PM, ensuring convenient access to dental care even on weekends."
},
{
id: "4", title: "Do you offer root canal treatment?", content: "Yes, we specialize in root canal treatment (RCT). As an endodontist, Dr. Padmasri has advanced expertise in treating complex endodontic cases with precision and care."
},
{
id: "5", title: "How do you ensure clinic hygiene?", content: "We maintain the highest hygiene standards with strict sterilization protocols, use of disposable instruments, and regular clinic sanitization to ensure patient safety."
},
{
id: "6", title: "Can I book an appointment online?", content: "Yes, you can book your appointment through our booking system. We also accept walk-ins during clinic hours at Sri Surya Complex, Ground Floor 101, Gajuwaka, Visakhapatnam."
}
]}
/>
</div>
<div id="contact" data-section="contact">
<ContactSplit
tag="Get In Touch"