Update src/app/page.tsx

This commit is contained in:
2026-03-12 10:50:06 +00:00
parent a8f2274708
commit 42fa73db57

View File

@@ -33,9 +33,9 @@ export default function LandingPage() {
{ name: "Menu", id: "menu" },
{ name: "Testimonials", id: "testimonials" },
{ name: "Contact", id: "contact" },
{ name: "Reservations", id: "reservations" }
{ name: "Reservations", id: "/reservations" }
]}
button={{ text: "Reserve Table", href: "reservations" }}
button={{ text: "Reserve Table", href: "/reservations" }}
brandName="Sheila's Café"
/>
</div>
@@ -45,8 +45,8 @@ export default function LandingPage() {
logoText="Sheila's Café"
description="Where Premium Breakfast Meets Warm Hospitality. Experience expertly crafted dishes, specialty coffee, and genuine service in our intimate Paddington setting."
buttons={[
{ text: "Reserve Your Table", href: "reservations" },
{ text: "View Menu", href: "menu" }
{ text: "Reserve Your Table", href: "/reservations" },
{ text: "View Menu", href: "#menu" }
]}
background={{ variant: "sparkles-gradient" }}
imageSrc="http://img.b2bpic.net/free-photo/wooden-furniture-with-cup-coffee_1203-1682.jpg"
@@ -63,7 +63,7 @@ export default function LandingPage() {
{ type: "text", content: "Sheila's Café is a destination for those who appreciate" },
{ type: "text", content: "quality, warmth, and exceptional dining experiences" }
]}
buttons={[{ text: "Learn Our Story", href: "#about" }]}
buttons={[{ text: "Reserve Now", href: "/reservations" }]}
useInvertedBackground={false}
/>
</div>
@@ -86,7 +86,7 @@ export default function LandingPage() {
/>
</div>
<div id="products" data-section="products">
<div id="menu" data-section="menu">
<ProductCardFour
products={[
{ id: "1", name: "Chicken, Spinach & Garlic Sandwich", price: "£9.50", variant: "Crispy • Flavourful • Fresh", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-toast-sandwich-with-tomatoes-greens-egg_23-2148893608.jpg", imageAlt: "Gourmet chicken spinach garlic sandwich" },
@@ -140,8 +140,8 @@ export default function LandingPage() {
title="Ready to Experience Sheila's Café?"
description="Visit us in Paddington for an unforgettable breakfast or coffee experience. We're open throughout the week and weekends."
buttons={[
{ text: "Reserve Your Table", href: "reservations" },
{ text: "Contact Us", href: "contact" }
{ text: "Reserve Your Table", href: "/reservations" },
{ text: "Contact Us", href: "#contact" }
]}
background={{ variant: "radial-gradient" }}
useInvertedBackground={false}
@@ -151,9 +151,9 @@ export default function LandingPage() {
<div id="footer" data-section="footer">
<FooterBaseReveal
columns={[
{ title: "Quick Links", items: [{ label: "Home", href: "#" }, { label: "About", href: "#about" }, { label: "Menu", href: "#menu" }, { label: "Reservations", href: "#reservations" }] },
{ title: "Visit Us", items: [{ label: "Location", href: "#" }, { label: "Hours", href: "#" }, { label: "Contact", href: "#contact" }, { label: "Directions", href: "#" }] },
{ title: "Legal", items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }, { label: "Cookie Policy", href: "#" }, { label: "Contact Support", href: "#contact" }] }
{ title: "Quick Links", items: [{ label: "Home", href: "/" }, { label: "About", href: "/#about" }, { label: "Menu", href: "/#menu" }, { label: "Reservations", href: "/reservations" }] },
{ title: "Visit Us", items: [{ label: "Location", href: "#" }, { label: "Hours", href: "#" }, { label: "Contact", href: "/#contact" }, { label: "Directions", href: "#" }] },
{ title: "Legal", items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }, { label: "Cookie Policy", href: "#" }, { label: "Contact Support", href: "/#contact" }] }
]}
copyrightText="© 2025 Sheila's Café. All rights reserved. Premium Breakfast & Coffee in Paddington."
/>