Update src/app/blog/page.tsx

This commit is contained in:
2026-02-24 07:15:51 +00:00
parent ac9647e727
commit b299f414c7

View File

@@ -31,10 +31,13 @@ export default function BlogPage() {
<NavbarLayoutFloatingInline
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "about" },
{ name: "Features", id: "features" },
{ name: "Events", id: "events" },
{ name: "Contact", id: "contact" },
{ name: "About", id: "#about" },
{ name: "Features", id: "#features" },
{ name: "Events", id: "#events" },
{ name: "Shop", id: "/shop" },
{ name: "Products", id: "/products" },
{ name: "Blog", id: "/blog" },
{ name: "Contact", id: "#contact" }
]}
brandName="Balero Chess Club"
button={{ text: "Join Now", href: "#contact" }}
@@ -66,10 +69,13 @@ export default function BlogPage() {
columns={[
{
title: "Quick Links", items: [
{ label: "Home", href: "#" },
{ label: "Home", href: "/" },
{ label: "About", href: "#about" },
{ label: "Features", href: "#features" },
{ label: "Events", href: "#events" },
{ label: "Shop", href: "/shop" },
{ label: "Products", href: "/products" },
{ label: "Blog", href: "/blog" }
],
},
{