Update src/app/blog/page.tsx

This commit is contained in:
2026-02-20 12:27:42 +00:00
parent 2b3409b98e
commit 976c1e96c2

View File

@@ -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"
}}
/>
</div>
@@ -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() {
</ReactLenis>
</ThemeProvider>
);
}
}