Files
97cff96b-044f-4b6e-a8a4-87f…/src/app/booking/page.tsx

88 lines
3.5 KiB
TypeScript

"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import FooterMedia from '@/components/sections/footer/FooterMedia';
export default function BookingPage() {
return (
<ThemeProvider
defaultButtonVariant="text-stagger"
defaultTextAnimation="entrance-slide"
borderRadius="soft"
contentWidth="small"
sizing="mediumLargeSizeLargeTitles"
background="none"
cardStyle="subtle-shadow"
primaryButtonStyle="diagonal-gradient"
secondaryButtonStyle="glass"
headingFontWeight="semibold"
>
<ReactLenis root>
<div className="bg-[#0a0a0a] text-[#f5f5f5] min-h-screen flex flex-col">
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "/#about" },
{ name: "Services", id: "/#features" },
{ name: "Pricing", id: "/#pricing" },
{ name: "Team", id: "/#team" },
{ name: "Book", id: "/booking" },
{ name: "Contact", id: "/#contact" },
]}
brandName="Maybach Cutz"
/>
</div>
<div className="flex-grow py-20 text-center">
<h1 className="text-4xl font-bold mb-6">Book Your Appointment</h1>
<p className="mb-8 text-xl">Call us directly to schedule your visit</p>
<a
href="tel:7863780141"
className="inline-block bg-[#e1b875] text-[#0a0a0a] px-8 py-4 rounded-full text-lg font-bold transition hover:opacity-90"
>
Call Now
</a>
<div className="mt-12 space-y-4">
<a
href="tel:7863780141"
className="block text-[#e1b875] hover:underline"
>
Phone: (786) 378-0141
</a>
<a
href="https://www.google.com/maps/search/?api=1&query=10693+Wiles+Rd,+Coral+Springs,+FL+33076"
target="_blank"
rel="noopener noreferrer"
className="block text-[#e1b875] hover:underline"
>
10693 Wiles Rd, Coral Springs, FL 33076
</a>
<div className="mt-8">
<h3 className="font-bold mb-2 uppercase text-[#e1b875]">Business Hours</h3>
<p>Mon-Fri: 9:00 AM - 7:00 PM</p>
<p>Sat: 9:00 AM - 5:00 PM</p>
<p>Sun: Closed</p>
</div>
</div>
</div>
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CKIUaXr59FE1QYCKDNglueswIR/uploaded-1776264324714-kh1wpzii.webp?_wi=2"
logoText="Brookside Barbers"
columns={[
{ title: "Location", items: [{ label: "10693 Wiles Rd, Coral Springs, FL 33076", href: "#" }] },
{ title: "Contact", items: [{ label: "(786) 378-0141", href: "tel:7863780141" }] },
{ title: "Services", items: [{ label: "Haircut", href: "/#pricing" }, { label: "Beard Trim", href: "/#pricing" }, { label: "Kids Cut", href: "/#pricing" }] },
]}
copyrightText="© 2025 Brookside Barbers"
/>
</div>
</div>
</ReactLenis>
</ThemeProvider>
);
}