Update src/app/blog/page.tsx

This commit is contained in:
2026-02-13 17:46:56 +00:00
parent f8a7684b72
commit cc74e617be

View File

@@ -29,7 +29,7 @@ export default function BlogPage() {
brandName="TechFlow"
navItems={[
{ name: "Home", id: "hero" },
{ name: "Features", id: "features" },
{ name: "Features", id: "/features" },
{ name: "FAQ", id: "faq" },
{ name: "Contact", id: "contact" }
]}
@@ -62,7 +62,7 @@ export default function BlogPage() {
columns={[
{
title: "Product", items: [
{ label: "Features", href: "features" },
{ label: "Features", href: "/features" },
{ label: "Pricing", href: "#" },
{ label: "Security", href: "#" }
]
@@ -95,4 +95,4 @@ export default function BlogPage() {
</ReactLenis>
</ThemeProvider>
);
}
}