Update src/app/page.tsx

This commit is contained in:
2026-02-20 12:27:44 +00:00
parent ab13a0d704
commit 0ef76f9530

View File

@@ -30,9 +30,10 @@ export default function LandingPage() {
<NavbarStyleCentered
brandName="Happy Paws Shelter"
navItems={[
{ name: "Home", id: "home" },
{ name: "Home", id: "/" },
{ name: "About", id: "about" },
{ name: "Adopt", id: "featured" },
{ name: "Our Story", id: "/about" },
{ name: "Process", id: "process" },
{ name: "Contact", id: "contact" }
]}
@@ -76,7 +77,7 @@ export default function LandingPage() {
]}
useInvertedBackground={false}
buttons={[
{ text: "Our Story", href: "#" },
{ text: "Our Story", href: "/about" },
{ text: "Get Involved", href: "#" }
]}
buttonAnimation="slide-up"
@@ -249,7 +250,7 @@ export default function LandingPage() {
title: "Quick Links", items: [
{ label: "Browse Pets", href: "#featured" },
{ label: "Adoption Process", href: "#process" },
{ label: "About Us", href: "#about" },
{ label: "About Us", href: "/about" },
{ label: "Contact", href: "#contact" }
]
},
@@ -276,4 +277,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}