Merge version_4 into main

Merge version_4 into main
This commit was merged in pull request #11.
This commit is contained in:
2026-04-15 14:52:58 +00:00

View File

@@ -4,7 +4,6 @@ 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';
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
export default function BookingPage() {
return (
@@ -14,54 +13,56 @@ export default function BookingPage() {
borderRadius="soft"
contentWidth="small"
sizing="mediumLargeSizeLargeTitles"
background="grid"
background="none"
cardStyle="subtle-shadow"
primaryButtonStyle="diagonal-gradient"
secondaryButtonStyle="glass"
headingFontWeight="semibold"
>
<ReactLenis root>
<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="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-primary-cta text-primary-cta-text px-8 py-4 rounded-full text-lg font-semibold hover:opacity-90 transition"
>
Call Now: (786) 378-0141
</a>
<div className="mt-12">
<p className="font-bold">Visit us at:</p>
<p>10693 Wiles Rd, Coral Springs, FL 33076</p>
<div className="bg-black text-white 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>
<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 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 text-gray-300">Call us directly to schedule your visit</p>
<a
href="tel:7863780141"
className="inline-block bg-white text-black px-8 py-4 rounded-full text-lg font-semibold hover:bg-gray-200 transition"
>
Call Now: (786) 378-0141
</a>
<div className="mt-12">
<p className="font-bold">Visit us at:</p>
<p className="text-gray-400">10693 Wiles Rd, Coral Springs, FL 33076</p>
</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>