diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index a1f92b2..4fe76b9 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -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() { ); -} \ No newline at end of file +}