14 Commits

Author SHA1 Message Date
6ee0c143af Update src/app/page.tsx 2026-04-15 17:54:07 +00:00
01e2b366b6 Update src/app/booking/page.tsx 2026-04-15 17:52:05 +00:00
f849d01599 Merge version_12 into main
Merge version_12 into main
2026-04-15 17:18:19 +00:00
07b0929af5 Update src/app/page.tsx 2026-04-15 17:18:15 +00:00
632895adb9 Update src/app/booking/page.tsx 2026-04-15 17:18:15 +00:00
059ce99276 Merge version_11 into main
Merge version_11 into main
2026-04-15 17:11:44 +00:00
90ee8d6881 Update src/app/styles/variables.css 2026-04-15 17:11:41 +00:00
afc1a20bca Update src/app/booking/page.tsx 2026-04-15 17:11:40 +00:00
fd03f41da9 Merge version_10 into main
Merge version_10 into main
2026-04-15 15:43:47 +00:00
e6c44c32e7 Merge version_9 into main
Merge version_9 into main
2026-04-15 15:43:25 +00:00
f25f53a347 Merge version_8 into main
Merge version_8 into main
2026-04-15 15:42:52 +00:00
3b98e0ff9d Merge version_8 into main
Merge version_8 into main
2026-04-15 15:42:35 +00:00
3bbaff94bd Merge version_7 into main
Merge version_7 into main
2026-04-15 15:42:07 +00:00
ae4f903b2b Merge version_6 into main
Merge version_6 into main
2026-04-15 15:41:11 +00:00
3 changed files with 45 additions and 19 deletions

View File

@@ -20,7 +20,7 @@ export default function BookingPage() {
headingFontWeight="semibold"
>
<ReactLenis root>
<div className="bg-black text-white min-h-screen flex flex-col">
<div className="bg-[#0a0a0a] text-[#f5f5f5] min-h-screen flex flex-col">
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={[
@@ -38,16 +38,34 @@ export default function BookingPage() {
<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>
<p className="mb-8 text-xl">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"
className="inline-block bg-[#e1b875] text-[#0a0a0a] px-8 py-4 rounded-full text-lg font-bold transition hover:opacity-90"
>
Call Now: (786) 378-0141
Call Now
</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 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>

View File

@@ -47,13 +47,21 @@ export default function LandingPage() {
<div id="hero" data-section="hero">
<HeroLogo
logoText="Brookside Barbers"
description="Experience luxury grooming in the heart of Coral Springs. Professional, clean, and dedicated service for the modern gentleman."
description="Master barbers. Classic cuts. Brookside Square."
buttons={[
{ text: "Book Now", href: "/booking" },
{ text: "Book Your Appointment", href: "/booking" },
]}
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CKIUaXr59FE1QYCKDNglueswIR/uploaded-1776267459945-qob82vsb.jpg"
imageAlt="Luxury barber shop interior"
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CKIUaXr59FE1QYCKDNglueswIR/uploaded-1776275636014-o8w0rm32.png"
imageAlt="Dark cinematic barber shop interior"
showDimOverlay={true}
buttonContainerClassName="flex flex-col items-center gap-4"
buttonClassName="bg-[#e1b875] text-black"
className="min-h-[80vh] flex flex-col items-center justify-center text-center font-serif"
/>
<div className="text-center py-6 bg-[#0a0a0a] text-[#e1b875]">
<a href="tel:7863780141" className="block hover:text-white transition">Tel: (786) 378-0141</a>
<a href="#" className="block hover:text-white transition mt-2">10693 Wiles Rd, Coral Springs, FL 33076</a>
</div>
</div>
<div id="about" data-section="about">
@@ -173,4 +181,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}

View File

@@ -10,15 +10,15 @@
--accent: #ffffff;
--background-accent: #ffffff; */
--background: #ffffff;
--card: #f9f9f9;
--foreground: #000f06e6;
--primary-cta: #0a7039;
--background: #f5f4ef;
--card: #dad6cd;
--foreground: #2a2928;
--primary-cta: #2a2928;
--primary-cta-text: #ffffff;
--secondary-cta: #f9f9f9;
--secondary-cta: #ecebea;
--secondary-cta-text: #000f06e6;
--accent: #e2e2e2;
--background-accent: #c4c4c4;
--accent: #ffffff;
--background-accent: #c6b180;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);