Files
f2fea106-1954-49ec-bf5d-892…/src/app/booking/page.tsx

136 lines
6.6 KiB
TypeScript

"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen";
import ContactCenter from "@/components/sections/contact/ContactCenter";
import MetricSplitMediaAbout from "@/components/sections/about/MetricSplitMediaAbout";
import FaqBase from "@/components/sections/faq/FaqBase";
import FooterBaseCard from "@/components/sections/footer/FooterBaseCard";
import { Calendar, Sparkles } from "lucide-react";
export default function BookingPage() {
return (
<ThemeProvider
defaultButtonVariant="expand-hover"
defaultTextAnimation="entrance-slide"
borderRadius="soft"
contentWidth="medium"
sizing="largeSizeMediumTitles"
background="none"
cardStyle="outline"
primaryButtonStyle="radial-glow"
secondaryButtonStyle="solid"
headingFontWeight="extrabold"
>
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={[
{ name: "Home", id: "/" },
{ name: "Services", id: "/services" },
{ name: "Book Now", id: "/booking" },
{ name: "Gallery", id: "/" },
{ name: "Contact", id: "/contact" },
]}
brandName="Sufi Barber"
bottomLeftText="Sufi // Sharp"
bottomRightText="sufibarber.dmv@gmail.com"
/>
</div>
<div id="booking-cta" data-section="booking-cta">
<ContactCenter
tag="Reserve Your Spot"
title="Book Your Premium Grooming Experience"
description="Secure your appointment now. We recommend booking in advance for peak hours, but walk-ins are always welcome. Limited premium slots available each week."
tagIcon={Calendar}
background={{ variant: "rotated-rays-animated-grid" }}
useInvertedBackground={false}
inputPlaceholder="Enter your email to proceed"
buttonText="Check Availability"
termsText="We respect your privacy. Your booking information will be used only for appointment confirmation and service communication."
onSubmit={(email) => console.log("Booking email:", email)}
/>
</div>
<div id="booking-info" data-section="booking-info">
<MetricSplitMediaAbout
tag="Booking Details"
tagIcon={Sparkles}
title="How Our Booking Process Works"
description="We've made booking simple and convenient. After reserving your email, you'll receive confirmation with available time slots. You can also call us directly at +1 (202) 555-1234 to discuss your specific needs, preferences, and any special requests. Our team will ensure you're paired with the perfect barber for your style."
metrics={[
{ value: "24/7", title: "Online Booking Available" },
{ value: "5 min", title: "Average Booking Time" },
]}
imageSrc="http://img.b2bpic.net/free-photo/handsome-hipster-bearded-male-sitting-armchair-barber-shop-while-hairdresser-shaves-his-beard-with-dangerous-razor_613910-18491.jpg?_wi=3"
imageAlt="Professional barber consultation"
useInvertedBackground={false}
mediaAnimation="slide-up"
metricsAnimation="slide-up"
/>
</div>
<div id="booking-faq" data-section="booking-faq">
<FaqBase
faqs={[
{
id: "1", title: "Do you accept walk-ins or is it appointments only?", content: "We welcome both walk-ins and appointments! However, we recommend booking in advance to guarantee your preferred time, especially during peak hours (lunch and evenings). Walk-in wait times vary, but appointments ensure you get the exact slot you want."},
{
id: "2", title: "What's your cancellation policy?", content: "We ask for 24-hour notice to cancel or reschedule appointments. Cancellations within 24 hours may incur a $15 cancellation fee. No-shows will result in a full service charge. We're flexible for emergencies—just call us as soon as possible."},
{
id: "3", title: "Is there parking available?", content: "Yes! Sufi Barber is located in a convenient plaza with dedicated free parking. We're easy to find and accessible. Plenty of spots available even during busy times."},
{
id: "4", title: "What payment methods do you accept?", content: "We accept cash, all major credit cards (Visa, Mastercard, American Express), and digital payments (Apple Pay, Google Pay). Tips can be added to card or cash."},
]}
title="Booking Questions"
description="Everything you need to know about booking your appointment at Sufi Barber"
textboxLayout="default"
useInvertedBackground={false}
faqsAnimation="slide-up"
animationType="smooth"
/>
</div>
<div id="footer" data-section="footer">
<FooterBaseCard
logoText="Sufi Barber"
columns={[
{
title: "Services", items: [
{ label: "Haircuts", href: "/services" },
{ label: "Beard Grooming", href: "/services" },
{ label: "Lineup & Details", href: "/services" },
{ label: "Premium Packages", href: "/services" },
],
},
{
title: "Company", items: [
{ label: "About Us", href: "/" },
{ label: "Our Barbers", href: "/" },
{ label: "Gallery", href: "/" },
{ label: "Testimonials", href: "/" },
],
},
{
title: "Booking", items: [
{ label: "Book Appointment", href: "/booking" },
{ label: "FAQ", href: "/services" },
{ label: "Cancellation Policy", href: "/services" },
{ label: "Contact", href: "/contact" },
],
},
{
title: "Connect", items: [
{ label: "Instagram", href: "https://instagram.com" },
{ label: "Facebook", href: "https://facebook.com" },
{ label: "Email", href: "mailto:sufibarber.dmv@gmail.com" },
{ label: "Phone", href: "tel:+12025551234" },
],
},
]}
copyrightText="© 2025 Sufi Barber | Premium Grooming | DMV Community"
/>
</div>
</ThemeProvider>
);
}