Update src/app/shop/page.tsx

This commit is contained in:
2026-02-20 12:27:46 +00:00
parent 57abd3038e
commit 57ce29f7bb

View File

@@ -39,11 +39,11 @@ export default function ShopPage() {
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":"Shop","id":"/shop"}
{"name":"About","id":"/about"},
{"name":"Adopt","id":"/#featured"},
{"name":"Our Story","id":"/about"},
{"name":"Process","id":"/#process"},
{"name":"Contact","id":"/#contact"}
]}
button={{"text":"Cart","onClick":() => setCartOpen(true)}}
/>
@@ -54,7 +54,7 @@ export default function ShopPage() {
<div id="footer" data-section="footer">
<FooterSimple
columns={[
{"title":"Quick Links","items":[{"label":"Browse Pets","href":"#featured"},{"label":"Adoption Process","href":"#process"},{"label":"About Us","href":"#about"},{"label":"Contact","href":"#contact"}]},
{"title":"Quick Links","items":[{"label":"Browse Pets","href":"/#featured"},{"label":"Adoption Process","href":"/#process"},{"label":"About Us","href":"/about"},{"label":"Contact","href":"/#contact"}]},
{"title":"Support","items":[{"label":"Donate","href":"#"},{"label":"Volunteer","href":"#"},{"label":"Sponsor a Pet","href":"#"},{"label":"FAQ","href":"#"}]},
{"title":"Connect","items":[{"label":"Facebook","href":"https://facebook.com"},{"label":"Instagram","href":"https://instagram.com"},{"label":"Twitter","href":"https://twitter.com"},{"label":"Contact Us","href":"mailto:info@happypaws.org"}]}
]}
@@ -86,11 +86,11 @@ export default function ShopPage() {
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":"Shop","id":"/shop"}
{"name":"About","id":"/about"},
{"name":"Adopt","id":"/#featured"},
{"name":"Our Story","id":"/about"},
{"name":"Process","id":"/#process"},
{"name":"Contact","id":"/#contact"}
]}
button={{"text":"Cart","onClick":() => setCartOpen(true)}}
/>
@@ -109,7 +109,7 @@ export default function ShopPage() {
<div id="footer" data-section="footer">
<FooterSimple
columns={[
{"title":"Quick Links","items":[{"label":"Browse Pets","href":"#featured"},{"label":"Adoption Process","href":"#process"},{"label":"About Us","href":"#about"},{"label":"Contact","href":"#contact"}]},
{"title":"Quick Links","items":[{"label":"Browse Pets","href":"/#featured"},{"label":"Adoption Process","href":"/#process"},{"label":"About Us","href":"/about"},{"label":"Contact","href":"/#contact"}]},
{"title":"Support","items":[{"label":"Donate","href":"#"},{"label":"Volunteer","href":"#"},{"label":"Sponsor a Pet","href":"#"},{"label":"FAQ","href":"#"}]},
{"title":"Connect","items":[{"label":"Facebook","href":"https://facebook.com"},{"label":"Instagram","href":"https://instagram.com"},{"label":"Twitter","href":"https://twitter.com"},{"label":"Contact Us","href":"mailto:info@happypaws.org"}]}
]}
@@ -120,4 +120,4 @@ export default function ShopPage() {
</ReactLenis>
</ThemeProvider>
);
}
}