Update src/app/booking/page.tsx

This commit is contained in:
2026-06-12 05:18:38 +00:00
parent d5c8b12a6f
commit 2d7fb8a088

View File

@@ -23,13 +23,13 @@ const CalendlyEmbed = () => {
return (
<div className="flex flex-col items-center justify-center min-h-[70vh] py-12 px-4 sm:px-6 lg:px-8">
<h1 className="text-4xl font-bold text-foreground mb-8 text-center">Book Your Appointment</h1>
<h1 className="text-4xl font-bold text-foreground mb-8 text-center">Book an Appointment</h1>
<p className="text-lg text-foreground mb-12 text-center max-w-2xl">
Select a convenient time below for your precision cut, traditional shave, or beard trim. We look forward to seeing you!
</p>
<div
className="calendly-inline-widget min-w-[320px] w-full max-w-4xl h-[800px] mx-auto rounded-lg shadow-xl overflow-hidden"
data-url="https://calendly.com/your-username/30min"
className="calendly-inline-widget min-w-[320px] w-full max-w-4xl min-h-[800px] mx-auto rounded-lg shadow-xl overflow-hidden"
data-url="https://calendly.com/ascendsites/haircut-slot"
></div>
</div>
);