diff --git a/src/app/page.tsx b/src/app/page.tsx
index 7f8e46c..8be4ae3 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -2,7 +2,8 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
-import HeroBillboardRotatedCarousel from "@/components/sections/hero/HeroBillboardRotatedCarousel";
+import HeroSplitKpi from "@/components/sections/hero/HeroSplitKpi";
+import ProductCardTwo from "@/components/sections/product/ProductCardTwo";
import InlineImageSplitTextAbout from "@/components/sections/about/InlineImageSplitTextAbout";
import FeatureCardNine from "@/components/sections/feature/FeatureCardNine";
import TestimonialCardSix from "@/components/sections/testimonial/TestimonialCardSix";
@@ -397,38 +398,58 @@ export default function LandingPage() {
- setBookingOpen(true) },
+ { text: "Learn More", href: "#services" },
+ ]}
+ buttonAnimation="slide-up"
+ imageSrc="http://img.b2bpic.net/free-photo/dentist-process-dental-services-dental-office-dental-treatment_1321-2973.jpg"
+ imageAlt="Beautiful professional smile"
+ mediaAnimation="slide-up"
+ imagePosition="right"
+ />
+
+
+
+
setBookingOpen(true) },
- { text: "Learn More", href: "#about" },
+ textboxLayout="default"
+ useInvertedBackground={false}
+ products={[
+ {
+ id: "1", brand: "Cosmetic Dentistry", name: "Smile Enhancement", price: "From $500", rating: 5,
+ reviewCount: "248", imageSrc: "http://img.b2bpic.net/free-photo/female-patient-smiling_107420-65384.jpg", imageAlt: "Cosmetic smile enhancement"
+ },
+ {
+ id: "2", brand: "Restorative", name: "Dental Implants", price: "From $2,500", rating: 5,
+ reviewCount: "189", imageSrc: "http://img.b2bpic.net/free-photo/old-man-sitting-dentist-s-office_1157-19454.jpg", imageAlt: "Advanced dental implant procedure"
+ },
+ {
+ id: "3", brand: "Preventive Care", name: "Professional Cleaning", price: "From $150", rating: 5,
+ reviewCount: "342", imageSrc: "http://img.b2bpic.net/free-photo/young-woman-receiving-dental-treatment-from-male-dentist-clinic_662251-2591.jpg", imageAlt: "Professional dental cleaning"
+ },
]}
+ gridVariant="three-columns-all-equal-width"
+ animationType="slide-up"
+ buttons={[{ text: "View All Services", onClick: () => setBookingOpen(true) }]}
buttonAnimation="slide-up"
- carouselItems={[
- {
- id: "1", imageSrc: "http://img.b2bpic.net/free-photo/female-patient-smiling_107420-65384.jpg?_wi=1", imageAlt: "Cosmetic smile enhancement"
- },
- {
- id: "2", imageSrc: "http://img.b2bpic.net/free-photo/old-man-sitting-dentist-s-office_1157-19454.jpg", imageAlt: "Advanced dental implant procedure"
- },
- {
- id: "3", imageSrc: "http://img.b2bpic.net/free-photo/young-woman-receiving-dental-treatment-from-male-dentist-clinic_662251-2591.jpg", imageAlt: "Professional dental cleaning"
- },
- {
- id: "4", imageSrc: "http://img.b2bpic.net/free-photo/dentist-process-dental-services-dental-office-dental-treatment_1321-2973.jpg", imageAlt: "Dental care treatment"
- },
- {
- id: "5", imageSrc: "http://img.b2bpic.net/free-photo/dental-clinic-interior-with-modern-dentistry-equipment-orange-color-stomatology-cabinet-with-nobody-it-orange-equipment-oral-treatment_482257-12486.jpg", imageAlt: "Modern dental office"
- },
- {
- id: "6", imageSrc: "http://img.b2bpic.net/free-photo/female-patient-smiling_107420-65384.jpg?_wi=2", imageAlt: "Cosmetic smile enhancement"
- }
- ]}
/>
@@ -443,7 +464,7 @@ export default function LandingPage() {
]}
useInvertedBackground={true}
buttons={[
- { text: "Discover Our Practice", href: "#about" },
+ { text: "Discover Our Practice", href: "#services" },
{ text: "Meet Our Team", href: "#testimonials" },
]}
buttonAnimation="slide-up"
@@ -543,10 +564,10 @@ export default function LandingPage() {
columns={[
{
title: "Services", items: [
- { label: "Cosmetic Dentistry", href: "#about" },
- { label: "Implants", href: "#about" },
- { label: "Preventive Care", href: "#about" },
- { label: "Emergency Care", href: "#contact" },
+ { label: "Cosmetic Dentistry", href: "#services" },
+ { label: "Implants", href: "#services" },
+ { label: "Preventive Care", href: "#services" },
+ { label: "Emergency Care", href: "#services" },
],
},
{
@@ -570,4 +591,4 @@ export default function LandingPage() {
);
-}
+}
\ No newline at end of file