diff --git a/src/app/page.tsx b/src/app/page.tsx
index ce45311..b3c231c 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -5,7 +5,7 @@ import ReactLenis from "lenis/react";
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FeatureHoverPattern from '@/components/sections/feature/featureHoverPattern/FeatureHoverPattern';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
-import HeroCarouselLogo from '@/components/sections/hero/heroCarouselLogo/HeroCarouselLogo';
+import HeroBillboard from '@/components/sections/hero/HeroBillboard';
import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout';
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import TeamCardOne from '@/components/sections/team/TeamCardOne';
@@ -44,27 +44,16 @@ export default function LandingPage() {
-
@@ -78,8 +67,7 @@ export default function LandingPage() {
type: "image", src: "http://img.b2bpic.net/free-photo/cheerful-dentist-patient-sitting-dental-office_651396-1900.jpg", alt: "Clinic Philosophy"},
]}
buttons={[
- {
- text: "Learn More"},
+ { text: "Learn More" },
]}
/>
@@ -137,12 +125,9 @@ export default function LandingPage() {
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-senior-woman-portrait-wearing-black-jacket_23-2148891713.jpg"},
]}
kpiItems={[
- {
- value: "5.0", label: "Google Rating"},
- {
- value: "26+", label: "Positive Reviews"},
- {
- value: "100%", label: "Hygiene Focus"},
+ { value: "5.0", label: "Google Rating" },
+ { value: "26+", label: "Positive Reviews" },
+ { value: "100%", label: "Hygiene Focus" },
]}
title="What Our Patients Say"
description="Over 26+ positive reviews from satisfied smiles in Chennai."
@@ -195,26 +180,20 @@ export default function LandingPage() {
columns={[
{
items: [
- {
- label: "Privacy Policy", href: "#"},
- {
- label: "Terms of Service", href: "#"},
+ { label: "Privacy Policy", href: "#" },
+ { label: "Terms of Service", href: "#" },
],
},
{
items: [
- {
- label: "Home", href: "#hero"},
- {
- label: "About", href: "#about"},
+ { label: "Home", href: "#hero" },
+ { label: "About", href: "#about" },
],
},
{
items: [
- {
- label: "Services", href: "#services"},
- {
- label: "Contact", href: "#contact"},
+ { label: "Services", href: "#services" },
+ { label: "Contact", href: "#contact" },
],
},
]}