From 976c1e96c2e5f63b1e7d3644dce4efa4b7af8f4c Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 20 Feb 2026 12:27:42 +0000 Subject: [PATCH] Update src/app/blog/page.tsx --- src/app/blog/page.tsx | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index 3a68632..c6bf88c 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -29,13 +29,14 @@ export default function BlogPage() { brandName="Happy Paws Shelter" navItems={[ { name: "Home", id: "/" }, - { name: "About", id: "about" }, - { name: "Adopt", id: "featured" }, - { name: "Process", id: "process" }, - { name: "Contact", id: "contact" } + { name: "About", id: "/about" }, + { name: "Adopt", id: "/#featured" }, + { name: "Our Story", id: "/about" }, + { name: "Process", id: "/#process" }, + { name: "Contact", id: "/#contact" } ]} button={{ - text: "Start Adoption", href: "contact" + text: "Start Adoption", href: "/#contact" }} /> @@ -65,10 +66,10 @@ export default function BlogPage() { columns={[ { title: "Quick Links", items: [ - { label: "Browse Pets", href: "#featured" }, - { label: "Adoption Process", href: "#process" }, - { label: "About Us", href: "#about" }, - { label: "Contact", href: "#contact" } + { label: "Browse Pets", href: "/#featured" }, + { label: "Adoption Process", href: "/#process" }, + { label: "About Us", href: "/about" }, + { label: "Contact", href: "/#contact" } ] }, { @@ -95,4 +96,4 @@ export default function BlogPage() { ); -} \ No newline at end of file +}