Update src/app/page.tsx

This commit is contained in:
2026-02-28 06:46:07 +00:00
parent 88a061fccb
commit f47f445871

View File

@@ -34,7 +34,8 @@ export default function LandingPage() {
{ name: "Menu", id: "products" },
{ name: "About", id: "about" },
{ name: "Reviews", id: "testimonial" },
{ name: "Contact", id: "contact" }
{ name: "Contact", id: "contact" },
{ name: "Menu Page", id: "/menu" }
]}
button={{
text: "Reserve Now", href: "https://www.opentable.com"
@@ -98,7 +99,7 @@ export default function LandingPage() {
gridVariant="three-columns-all-equal-width"
animationType="slide-up"
buttons={[
{ text: "View Full Menu", href: "#" }
{ text: "View Full Menu", href: "/menu" }
]}
buttonAnimation="slide-up"
/>
@@ -201,4 +202,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}