4 Commits

Author SHA1 Message Date
546044575d Update src/app/page.tsx 2026-05-07 19:59:04 +00:00
1a0574bf53 Merge version_5 into main
Merge version_5 into main
2026-05-07 19:58:21 +00:00
54e35c3268 Update src/app/page.tsx 2026-05-07 19:58:15 +00:00
30b69af9ec Merge version_4 into main
Merge version_4 into main
2026-05-07 19:50:05 +00:00

View File

@@ -36,7 +36,7 @@ export default function RockSportsBarPage() {
{ name: "Reviews", id: "testimonials" },
{ name: "Contact", id: "contact" },
]}
button={{ text: "Book Table", href: "#contact" }}
button={{ text: "Book Table", href: "/contact" }}
/>
</div>
@@ -45,8 +45,8 @@ export default function RockSportsBarPage() {
title="The Rock Sports Bar & Grill"
description="Catch the big game, grab a cold beer, and enjoy our signature pub grub. The best local spot for sports, food, and fun."
buttons={[
{ text: "View Menu", href: "#services" },
{ text: "Book Now", href: "#contact" },
{ text: "View Menu", href: "/services" },
{ text: "Book Now", href: "/contact" },
]}
imageSrc="https://images.unsplash.com/photo-1542832803-34e80387532d?q=80&w=2000"
imageAlt="Sports bar atmosphere with screens and drinks"
@@ -124,7 +124,7 @@ export default function RockSportsBarPage() {
description="Located at 123 Sports Plaza. Open daily from 11 AM 2 AM. Grab a table or call us for a booking."
buttons={[
{ text: "Call (555) 123-4567", href: "tel:5551234567" },
{ text: "Book Table", onClick: () => { window.location.href = "tel:5551234567"; } }
{ text: "Get Directions", onClick: () => { window.location.href = "https://maps.google.com"; } }
]}
background={{ variant: "plain" }}
useInvertedBackground={false}
@@ -145,4 +145,4 @@ export default function RockSportsBarPage() {
</ReactLenis>
</ThemeProvider>
);
}
}