Update src/app/contact/page.tsx

This commit is contained in:
2026-03-27 13:45:35 +00:00
parent 058cbbdb9b
commit de93a04fbb

View File

@@ -3,24 +3,30 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import ContactText from '@/components/sections/contact/ContactText';
import ContactSplit from '@/components/sections/contact/ContactSplit';
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
export default function ContactPage() {
return (
<ThemeProvider>
<ThemeProvider defaultButtonVariant="text-stagger" defaultTextAnimation="entrance-slide" borderRadius="rounded" contentWidth="medium" sizing="medium" background="circleGradient" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="normal">
<ReactLenis root>
<NavbarStyleFullscreen
navItems={[{ name: "Home", id: "/" }, { name: "Services", id: "/services" }, { name: "Contact", id: "/contact" }]}
brandName="Himchan Hospital"
/>
<ContactText
text="Contact Himchan Hospital - Our team is here to support your health journey."
background={{ variant: "animated-grid" }}
/>
<FooterBaseReveal
columns={[{ title: "Quick Links", items: [{ label: "Home", href: "/" }, { label: "Services", href: "/services" }] }]}
/>
<div id="contact" data-section="contact">
<ContactSplit
title="Contact Us"
description="Our team is here to support your health journey."
background={{ variant: "animated-grid" }}
useInvertedBackground={false}
/>
</div>
<div id="hospital-footer" data-section="hospital-footer">
<FooterBaseReveal
columns={[{ title: "Quick Links", items: [{ label: "Home", href: "/" }, { label: "Services", href: "/services" }] }]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);