Merge version_1 into main #2

Merged
bender merged 1 commits from version_1 into main 2026-04-12 04:15:26 +00:00

View File

@@ -7,7 +7,7 @@ import FooterCard from '@/components/sections/footer/FooterCard';
import LegalSection from '@/components/legal/LegalSection';
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
export default function LandingPage() {
export default function ContactPage() {
return (
<ThemeProvider
defaultButtonVariant="elastic-effect"
@@ -22,84 +22,51 @@ export default function LandingPage() {
headingFontWeight="semibold"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={[
{
name: "Home",
id: "/",
},
{
name: "Treatments",
id: "/treatments",
},
{
name: "About",
id: "/about",
},
{
name: "Testimonials",
id: "/testimonials",
},
{
name: "Book Now",
id: "/contact",
},
]}
brandName="Luxe Smile"
/>
</div>
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={[
{ name: "Home", id: "/" },
{ name: "Treatments", id: "/treatments" },
{ name: "About", id: "/about" },
{ name: "Testimonials", id: "/testimonials" },
{ name: "Contact", id: "/contact" },
]}
brandName="Luxe Smile"
/>
</div>
<div id="contact" data-section="contact">
<ContactCTA
useInvertedBackground={false}
background={{
variant: "plain",
}}
tag="Support"
title="Need assistance?"
description="Speak with our concierge directly for help."
buttons={[
{
text: "Call Us",
href: "tel:+123456789",
},
]}
/>
</div>
<div id="contact" data-section="contact">
<ContactCTA
useInvertedBackground={false}
background={{ variant: "plain" }}
tag="Support"
title="Need assistance?"
description="Speak with our concierge directly for help."
buttons={[{ text: "Call Us", href: "tel:+123456789" }]}
/>
</div>
<div id="legal" data-section="legal">
<LegalSection
layout="section"
title="Privacy and Terms"
sections={[
{
heading: "Confidentiality",
content: {
type: "paragraph",
text: "All information shared during consultations is handled with strict medical confidentiality.",
},
},
{
heading: "Booking Policy",
content: {
type: "list",
items: [
"Cancellations must be made 48 hours in advance.",
"Deposit required for major surgical procedures.",
],
},
},
]}
/>
</div>
<div id="legal" data-section="legal">
<LegalSection
layout="section"
title="Privacy and Terms"
sections={[
{
heading: "Confidentiality", content: { text: "All information shared during consultations is handled with strict medical confidentiality." },
},
{
heading: "Booking Policy", content: { items: ["Cancellations must be made 48 hours in advance.", "Deposit required for major surgical procedures."] },
},
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterCard
logoText="Luxe Smile"
copyrightText="© 2025 Luxe Smile Clinic | Dubai"
/>
</div>
<div id="footer" data-section="footer">
<FooterCard
logoText="Luxe Smile"
copyrightText="© 2025 Luxe Smile Clinic | Dubai"
/>
</div>
</ReactLenis>
</ThemeProvider>
);