Update src/app/page.tsx

This commit is contained in:
2026-06-03 15:27:49 +00:00
parent 08e717b77c
commit 6cf6778e12

View File

@@ -34,11 +34,12 @@ export default function ItalianRestaurantPage() {
navItems={[
{ name: "Menu", id: "menu" },
{ name: "About", id: "about" },
{ name: "Reservations", id: "contact" },
{ name: "Reservations", href: "/reservations" },
{ name: "Contact Us", href: "/contact-us" },
{ name: "Reviews", id: "testimonials" }
]}
button={{
text: "Book a Table", href: "contact"
text: "Book a Table", href: "/reservations"
}}
/>
</div>
@@ -195,11 +196,11 @@ export default function ItalianRestaurantPage() {
<div id="contact" data-section="contact">
<ContactText
text="Ready to embark on a culinary journey to Kerala? Reserve your table at Kerala Flavors and discover a world of taste."
text="Ready to embark on a culinary journey to Kerala? Book your table or reach out to us directly for an unforgettable dining experience."
background={{ variant: "plain" }}
buttons={[
{ text: "Make a Reservation", href: "https://example.com/reservations" },
{ text: "Contact Us", href: "mailto:info@keralaflavors.com" }
{ text: "Make a Reservation", href: "/reservations" },
{ text: "Contact Our Team", href: "/contact-us" }
]}
useInvertedBackground={false}
/>
@@ -209,10 +210,10 @@ export default function ItalianRestaurantPage() {
<FooterLogoReveal
logoText="Kerala Flavors"
leftLink={{ text: "Privacy Policy", href: "#privacy" }}
rightLink={{ text: "Contact Us", href: "#contact" }}
rightLink={{ text: "Contact Us", href: "/contact-us" }}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}