Update src/app/blog/page.tsx
This commit is contained in:
@@ -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>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user