Update src/app/booking/page.tsx

This commit is contained in:
2026-03-28 12:17:14 +00:00
parent cbe7264865
commit cbdefefa2e

View File

@@ -4,23 +4,33 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import ContactCTA from '@/components/sections/contact/ContactCTA';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
export default function BookingPage() {
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>
<NavbarLayoutFloatingInline
navItems={[{ name: "Home", id: "/" }, { name: "About", id: "/#about" }, { name: "Services", id: "/#services" }, { name: "Book", id: "/booking" }, { name: "Portal", id: "/portal" }]}
brandName="Paws & Relax"
button={{ text: "Portal", href: "/portal" }}
/>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[{ name: "Home", id: "/" }, { name: "Blog", id: "/blog" }, { name: "Booking", id: "/booking" }, { name: "Portal", id: "/portal" }]}
brandName="Paws & Relax"
button={{ text: "Portal", href: "/portal" }}
/>
</div>
<div className="pt-32 pb-20 px-6 max-w-4xl mx-auto">
<h1 className="text-4xl font-bold mb-8">Online Booking</h1>
<div className="p-8 bg-card rounded-lg shadow-sm border">
<p>Booking calendar interface will be initialized here.</p>
</div>
</div>
<ContactCTA tag="Support" title="Need help booking?" description="Contact us if you have any trouble scheduling your appointment." buttons={[{ text: "Call Us", href: "tel:6099944450" }]} />
<div id="contact" data-section="contact">
<ContactCTA tag="Support" title="Need help booking?" description="Contact us if you have any trouble scheduling your appointment." buttons={[{ text: "Call Us", href: "tel:6099944450" }]} background={{ variant: "plain" }} useInvertedBackground={false} />
</div>
<div id="footer" data-section="footer">
<FooterBaseCard
columns={[{ title: "Quick Links", items: [{ label: "Home", href: "/" }, { label: "Blog", href: "/blog" }] }]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);