Update src/app/blog/page.tsx

This commit is contained in:
2026-02-19 15:36:42 +00:00
parent 0619f404b3
commit 9f8e7a385f

View File

@@ -28,11 +28,12 @@ export default function BlogPage() {
<NavbarLayoutFloatingOverlay
brandName="Koliba Ukrainska"
navItems={[
{ name: "Philosophy", id: "about" },
{ name: "Menu", id: "menu" },
{ name: "Banquets", id: "banquets" },
{ name: "Delivery", id: "delivery" },
{ name: "Contacts", id: "contact" }
{ name: "Philosophy", id: "#about" },
{ name: "Menu", id: "#menu" },
{ name: "Banquets", id: "#banquets" },
{ name: "Delivery", id: "#delivery" },
{ name: "About Us", id: "/about" },
{ name: "Contacts", id: "#contact" }
]}
button={{ text: "Reserve Table", href: "#contact" }}
buttonClassName="rounded-full px-6 py-2"
@@ -64,10 +65,10 @@ export default function BlogPage() {
columns={[
{
title: "Restaurant", items: [
{ label: "Philosophy", href: "#about" },
{ label: "Menu", href: "#menu" },
{ label: "Banquets", href: "#banquets" },
{ label: "Delivery", href: "#delivery" }
{ label: "Philosophy", href: "/about" },
{ label: "Menu", href: "/#menu" },
{ label: "Banquets", href: "/#banquets" },
{ label: "Delivery", href: "/#delivery" }
]
},
{
@@ -93,4 +94,4 @@ export default function BlogPage() {
</ReactLenis>
</ThemeProvider>
);
}
}