From fb8858331fb1f687ddb5b7674886cf317a95981e Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 20 Feb 2026 12:12:07 +0000 Subject: [PATCH] Update src/app/blog/page.tsx --- src/app/blog/page.tsx | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index 34b8b2f..f1f3bd6 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -29,11 +29,11 @@ export default function BlogPage() { brandName="My Blog" navItems={[ { name: "Home", id: "/" }, - { name: "Articles", id: "blog" }, + { name: "Articles", id: "/blog" }, { name: "About", id: "about" }, { name: "Contact", id: "contact" } ]} - button={{ text: "Subscribe", href: "#newsletter" }} + button={{ text: "Subscribe", href: "newsletter" }} /> @@ -62,7 +62,7 @@ export default function BlogPage() { columns={[ { title: "Content", items: [ - { label: "Articles", href: "#blog" }, + { label: "Articles", href: "/blog" }, { label: "Featured", href: "#featured" }, { label: "Categories", href: "#" }, { label: "Archive", href: "#" } @@ -70,7 +70,7 @@ export default function BlogPage() { }, { title: "Connect", items: [ - { label: "Newsletter", href: "#newsletter" }, + { label: "Newsletter", href: "newsletter" }, { label: "Twitter", href: "https://twitter.com" }, { label: "LinkedIn", href: "https://linkedin.com" }, { label: "Email", href: "mailto:hello@myblog.com" } @@ -78,9 +78,9 @@ export default function BlogPage() { }, { title: "About", items: [ - { label: "About Me", href: "#about" }, - { label: "Contact", href: "#contact" }, - { label: "Collaborate", href: "#contact" }, + { label: "About Me", href: "about" }, + { label: "Contact", href: "contact" }, + { label: "Collaborate", href: "contact" }, { label: "Advertise", href: "#" } ] }, @@ -98,4 +98,4 @@ export default function BlogPage() { ); -} \ No newline at end of file +}