10 Commits

Author SHA1 Message Date
075b45d404 Update src/app/page.tsx 2026-03-07 16:52:05 +00:00
14b5625c0a Update src/app/page.tsx 2026-03-07 16:51:15 +00:00
e135ff8fe7 Update src/app/page.tsx 2026-03-07 16:49:36 +00:00
4f78c3faf1 Update src/app/layout.tsx 2026-03-07 16:49:36 +00:00
7a071d376b Switch to version 3: modified src/app/page.tsx 2026-03-07 16:44:25 +00:00
134bd05ad7 Merge version_4 into main
Merge version_4 into main
2026-03-07 16:41:24 +00:00
79e16537c6 Update src/app/page.tsx 2026-03-07 16:41:20 +00:00
7192fb24f2 Merge version_4 into main
Merge version_4 into main
2026-03-07 16:39:33 +00:00
39d5c1f99c Update src/app/page.tsx 2026-03-07 16:39:23 +00:00
2476b1f9d4 Merge version_3 into main
Merge version_3 into main
2026-03-07 14:44:03 +00:00
2 changed files with 14 additions and 8 deletions

View File

@@ -1422,4 +1422,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -5,7 +5,7 @@ import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloating
import HeroSplitKpi from "@/components/sections/hero/HeroSplitKpi";
import ProductCardTwo from "@/components/sections/product/ProductCardTwo";
import InlineImageSplitTextAbout from "@/components/sections/about/InlineImageSplitTextAbout";
import FeatureCardOne from "@/components/sections/feature/FeatureCardOne";
import FeatureCardNine from "@/components/sections/feature/FeatureCardNine";
import TestimonialCardSix from "@/components/sections/testimonial/TestimonialCardSix";
import ContactSplit from "@/components/sections/contact/ContactSplit";
import FooterBase from "@/components/sections/footer/FooterBase";
@@ -472,7 +472,7 @@ export default function LandingPage() {
</div>
<div id="features" data-section="features">
<FeatureCardOne
<FeatureCardNine
title="Why Choose Us"
description="We combine luxury amenities with cutting-edge dental technology to create an unparalleled patient experience."
tag="Our Advantages"
@@ -482,16 +482,22 @@ export default function LandingPage() {
useInvertedBackground={false}
features={[
{
title: "Patient Comfort", description: "Relax in our luxurious treatment rooms with premium seating, ambient lighting, and calming environments designed for maximum comfort.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-female-patient_23-2148396133.jpg", imageAlt: "Comfortable patient treatment area"
id: 1,
title: "Patient Comfort", description: "Relax in our luxurious treatment rooms with premium seating, ambient lighting, and calming environments designed for maximum comfort.", phoneOne: { imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-female-patient_23-2148396133.jpg?_wi=1", imageAlt: "Comfortable patient treatment area" },
phoneTwo: { imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-female-patient_23-2148396133.jpg?_wi=2", imageAlt: "Comfortable patient treatment area" }
},
{
title: "Advanced Technology", description: "We invest in the latest dental technology including digital imaging, laser treatments, and computer-guided implant placement.", imageSrc: "http://img.b2bpic.net/free-photo/dentist-doctor-patient-looking-digital-teeh-x-ray-dental-office-person-pov-stomatology-wearing-protective-face-mask-gloves-pointing-teeth-radiography-stomatological-clinic_482257-13097.jpg", imageAlt: "Advanced dental technology"
id: 2,
title: "Advanced Technology", description: "We invest in the latest dental technology including digital imaging, laser treatments, and computer-guided implant placement.", phoneOne: { imageSrc: "http://img.b2bpic.net/free-photo/dentist-doctor-patient-looking-digital-teeh-x-ray-dental-office-person-pov-stomatology-wearing-protective-face-mask-gloves-pointing-teeth-radiography-stomatological-clinic_482257-13097.jpg?_wi=1", imageAlt: "Advanced dental technology" },
phoneTwo: { imageSrc: "http://img.b2bpic.net/free-photo/dentist-doctor-patient-looking-digital-teeh-x-ray-dental-office-person-pov-stomatology-wearing-protective-face-mask-gloves-pointing-teeth-radiography-stomatological-clinic_482257-13097.jpg?_wi=2", imageAlt: "Advanced dental technology" }
},
{
title: "Expert Team", description: "Our board-certified dentists and specialists have over 25 years combined experience delivering exceptional results.", imageSrc: "http://img.b2bpic.net/free-photo/smiley-doctor-talking-with-nurse_23-2148757329.jpg", imageAlt: "Professional dental team"
id: 3,
title: "Expert Team", description: "Our board-certified dentists and specialists have over 25 years combined experience delivering exceptional results.", phoneOne: { imageSrc: "http://img.b2bpic.net/free-photo/smiley-doctor-talking-with-nurse_23-2148757329.jpg?_wi=1", imageAlt: "Professional dental team" },
phoneTwo: { imageSrc: "http://img.b2bpic.net/free-photo/smiley-doctor-talking-with-nurse_23-2148757329.jpg?_wi=2", imageAlt: "Professional dental team" }
},
]}
gridVariant="three-columns-all-equal-width"
showStepNumbers={true}
animationType="slide-up"
buttons={[{ text: "Schedule Appointment", onClick: () => setBookingOpen(true) }]}
buttonAnimation="slide-up"
@@ -585,4 +591,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}