Update src/app/page.tsx

This commit is contained in:
2025-12-22 13:46:32 +00:00
parent c1729b8a80
commit bac5d48bcc

View File

@@ -1,4 +1,4 @@
"use client"
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
@@ -28,7 +28,7 @@ export default function LandingPage() {
brandName="Trattoria"
navItems={[
{ name: "Home", id: "hero" },
{ name: "About", id: "about" },
{ name: "About us", id: "about" },
{ name: "Menu", id: "menu" },
{ name: "Reviews", id: "testimonials" },
{ name: "Contact", id: "contact" }
@@ -47,7 +47,7 @@ export default function LandingPage() {
showBlur={true}
showDimOverlay={true}
buttons={[
{ text: "Reserve a Table", href: "contact" },
{ text: "Fast reserve", href: "contact" },
{ text: "View Menu", href: "menu" }
]}
/>
@@ -205,4 +205,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}