Merge version_1 into main #2

Merged
bender merged 1 commits from version_1 into main 2026-04-20 15:01:48 +00:00

View File

@@ -8,7 +8,7 @@ import FooterMedia from '@/components/sections/footer/FooterMedia';
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import { CheckCircle, Shield, Sparkles } from "lucide-react";
export default function LandingPage() {
export default function ServicesPage() {
return (
<ThemeProvider
defaultButtonVariant="text-shift"
@@ -23,120 +23,77 @@ export default function LandingPage() {
headingFontWeight="normal"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
navItems={[
{
name: "Home",
id: "/",
},
{
name: "About Us",
id: "/about",
},
{
name: "Services",
id: "/services",
},
{
name: "Contact",
id: "/contact",
},
]}
brandName="Bright Smile Dental"
/>
</div>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
navItems={[
{ name: "Home", id: "/" },
{ name: "About Us", id: "/about" },
{ name: "Services", id: "/services" },
{ name: "Contact", id: "/contact" }
]}
brandName="Bright Smile Dental"
/>
</div>
<div id="services-list" data-section="services-list">
<FeatureBento
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={true}
features={[
{
title: "General Dentistry",
description: "Regular checkups and cleanings to maintain optimal oral health.",
bentoComponent: "reveal-icon",
icon: CheckCircle,
imageSrc: "http://img.b2bpic.net/free-photo/happy-beautiful-blonde-woman-wearing-white-shirt-standing-co-working-space-leaning-desk_74855-15151.jpg?_wi=2",
imageAlt: "professional dentist portrait medical office",
},
{
title: "Cosmetic Dentistry",
description: "Transform your smile with professional whitening and veneers.",
bentoComponent: "reveal-icon",
icon: Sparkles,
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-girl-sitting-dentist-s-office_1157-23501.jpg?_wi=3",
imageAlt: "professional dentist portrait medical office",
},
{
title: "Orthodontics",
description: "Straighten your teeth effectively with modern orthodontic solutions.",
bentoComponent: "reveal-icon",
icon: Shield,
imageSrc: "http://img.b2bpic.net/free-photo/close-up-dentist-equipment_23-2148338090.jpg?_wi=2",
imageAlt: "professional dentist portrait medical office",
},
]}
title="Comprehensive Dental Services"
description="We offer a wide range of treatments tailored to your individual needs."
/>
</div>
<div id="services-list" data-section="services-list">
<FeatureBento
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={true}
features={[
{
title: "General Dentistry", description: "Regular checkups and cleanings to maintain optimal oral health.", bentoComponent: "reveal-icon", icon: CheckCircle
},
{
title: "Cosmetic Dentistry", description: "Transform your smile with professional whitening and veneers.", bentoComponent: "reveal-icon", icon: Sparkles
},
{
title: "Orthodontics", description: "Straighten your teeth effectively with modern orthodontic solutions.", bentoComponent: "reveal-icon", icon: Shield
}
]}
title="Comprehensive Dental Services"
description="We offer a wide range of treatments tailored to your individual needs."
/>
</div>
<div id="feature" data-section="feature">
<FeatureCardTwentyOne
useInvertedBackground={false}
title="Detailed Care"
description="Our special care services."
accordionItems={[
{
id: "a1",
title: "Emergency",
content: "Available 24/7",
},
]}
imageSrc="http://img.b2bpic.net/free-photo/female-patient-opening-her-mouth-doctor-look-her-throat-otolaryngologist-examines-sore-throat-patient_657921-185.jpg"
mediaAnimation="none"
/>
</div>
<div id="feature" data-section="feature">
<FeatureCardTwentyOne
useInvertedBackground={false}
title="Detailed Care"
description="Our special care services."
accordionItems={[
{
id: "a1", title: "Emergency", content: "Available 24/7"
}
]}
imageSrc="http://img.b2bpic.net/free-photo/female-patient-opening-her-mouth-doctor-look-her-throat-otolaryngologist-examines-sore-throat-patient_657921-185.jpg"
mediaAnimation="none"
/>
</div>
<div id="footer" data-section="footer">
<FooterMedia
logoText="Bright Smile Dental"
columns={[
{
title: "Quick Links",
items: [
{
label: "Home",
href: "/",
},
{
label: "About Us",
href: "/about",
},
],
},
{
title: "Clinic Hours",
items: [
{
label: "Mon-Fri: 9am-6pm",
href: "#",
},
{
label: "Sat: 10am-2pm",
href: "#",
},
],
},
]}
copyrightText="© 2025 Bright Smile Dental. All rights reserved."
imageSrc="http://img.b2bpic.net/free-photo/smiling-female-dentist-dental-clinic_107420-74193.jpg?_wi=3"
imageAlt="Smiling female dentist in dental clinic"
/>
</div>
<div id="footer" data-section="footer">
<FooterMedia
logoText="Bright Smile Dental"
columns={[
{
title: "Quick Links", items: [
{ label: "Home", href: "/" },
{ label: "About Us", href: "/about" }
]
},
{
title: "Clinic Hours", items: [
{ label: "Mon-Fri: 9am-6pm", href: "#" },
{ label: "Sat: 10am-2pm", href: "#" }
]
}
]}
copyrightText="© 2025 Bright Smile Dental. All rights reserved."
imageSrc="http://img.b2bpic.net/free-photo/smiling-female-dentist-dental-clinic_107420-74193.jpg"
imageAlt="Smiling female dentist in dental clinic"
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}