Merge version_3 into main #7

Merged
bender merged 1 commits from version_3 into main 2026-03-07 19:37:07 +00:00

View File

@@ -2,7 +2,7 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
import HeroSplitKpi from "@/components/sections/hero/HeroSplitKpi";
import HeroBillboard from "@/components/sections/hero/HeroBillboard";
import HeroBillboardGallery from "@/components/sections/hero/HeroBillboardGallery";
import InlineImageSplitTextAbout from "@/components/sections/about/InlineImageSplitTextAbout";
import TestimonialCardSix from "@/components/sections/testimonial/TestimonialCardSix";
@@ -39,16 +39,10 @@ export default function LandingPage() {
</div>
<div id="hero" data-section="hero">
<HeroSplitKpi
<HeroBillboard
title="Excellence in Modern Dentistry"
description="Experience premium dental care with state-of-the-art technology and compassionate expertise. Your smile deserves the finest treatment available."
background={{ variant: "glowing-orb" }}
kpis={[
{ value: "25+", label: "Years of Excellence" },
{ value: "5,000+", label: "Happy Patients" },
{ value: "98%", label: "Satisfaction Rate" },
]}
enableKpiAnimation={true}
tag="Premium Dental Practice"
tagIcon={Sparkles}
tagAnimation="blur-reveal"
@@ -57,10 +51,15 @@ export default function LandingPage() {
{ text: "Learn More", href: "#services" },
]}
buttonAnimation="blur-reveal"
avatars={[
{ src: "http://img.b2bpic.net/free-photo/front-view-smiley-woman-looking-camera_23-2148317302.jpg", alt: "Patient 1" },
{ src: "http://img.b2bpic.net/free-photo/portrait-handsome-smiling-stylish-hipster-lambersexual-modelsexy-modern-man-dressed-elegant-suit-fashion-male-posing-studio-near-blue-wall_158538-21048.jpg", alt: "Patient 2" },
{ src: "http://img.b2bpic.net/free-photo/modern-businesswoman_23-2148012909.jpg", alt: "Patient 3" },
]}
avatarText="Trusted by 5,000+ satisfied patients"
imageSrc="http://img.b2bpic.net/free-photo/kitchen-cutlery_23-2147958906.jpg"
imageAlt="Modern luxury dental office"
mediaAnimation="blur-reveal"
imagePosition="right"
/>
</div>
@@ -182,4 +181,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}