From 54a1a2976c4f7f68602556c2c480f52f706019a9 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 13 Feb 2026 11:42:02 +0000 Subject: [PATCH 1/9] Update src/app/about/page.tsx --- src/app/about/page.tsx | 24 +++++++++--------------- 1 file changed, 9 insertions(+), 15 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 80245dc..4e44c3b 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -11,31 +11,31 @@ export default function AboutPage() { { name: "Home", id: "/" }, { name: "Adopt", id: "/adopt" }, { name: "About", id: "/about" }, - { name: "Contact", id: "/contact" } + { name: "Contact", id: "/contact" }, + { name: "Donate", id: "/donate" }, + { name: "Shop", id: "/shop" }, + { name: "Blog", id: "/blog" } ]; const navButton = { text: "Donate", href: "/donate" }; const footerColumns = [ { - title: "About Us", - items: [ + title: "About Us", items: [ { label: "Our Mission", href: "/about" }, { label: "Meet the Team", href: "/about" }, { label: "Impact Report", href: "/about" } ] }, { - title: "Get Involved", - items: [ + title: "Get Involved", items: [ { label: "Adopt a Pet", href: "/adopt" }, { label: "Volunteer", href: "/contact" }, { label: "Foster a Pet", href: "/contact" } ] }, { - title: "Resources", - items: [ + title: "Resources", items: [ { label: "FAQs", href: "/contact" }, { label: "Pet Care Tips", href: "/" }, { label: "Contact Us", href: "/contact" } @@ -63,7 +63,7 @@ export default function AboutPage() {
Date: Fri, 13 Feb 2026 11:42:02 +0000 Subject: [PATCH 2/9] Update src/app/adopt/page.tsx --- src/app/adopt/page.tsx | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/app/adopt/page.tsx b/src/app/adopt/page.tsx index cdd90dc..35710a3 100644 --- a/src/app/adopt/page.tsx +++ b/src/app/adopt/page.tsx @@ -12,31 +12,31 @@ export default function AdoptPage() { { name: "Home", id: "/" }, { name: "Adopt", id: "/adopt" }, { name: "About", id: "/about" }, - { name: "Contact", id: "/contact" } + { name: "Contact", id: "/contact" }, + { name: "Donate", id: "/donate" }, + { name: "Shop", id: "/shop" }, + { name: "Blog", id: "/blog" } ]; const navButton = { text: "Donate", href: "/donate" }; const footerColumns = [ { - title: "About Us", - items: [ + title: "About Us", items: [ { label: "Our Mission", href: "/about" }, { label: "Meet the Team", href: "/about" }, { label: "Impact Report", href: "/about" } ] }, { - title: "Get Involved", - items: [ + title: "Get Involved", items: [ { label: "Adopt a Pet", href: "/adopt" }, { label: "Volunteer", href: "/contact" }, { label: "Foster a Pet", href: "/contact" } ] }, { - title: "Resources", - items: [ + title: "Resources", items: [ { label: "FAQs", href: "/contact" }, { label: "Pet Care Tips", href: "/" }, { label: "Contact Us", href: "/contact" } -- 2.49.1 From 2177d6400b55851d22b42f948c2221b10e651f4d Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 13 Feb 2026 11:42:03 +0000 Subject: [PATCH 3/9] Update src/app/blog/page.tsx --- src/app/blog/page.tsx | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index c259969..420e8b4 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -30,7 +30,10 @@ export default function BlogPage() { { name: "Home", id: "/" }, { name: "Adopt", id: "/adopt" }, { name: "About", id: "/about" }, - { name: "Contact", id: "/contact" } + { name: "Contact", id: "/contact" }, + { name: "Donate", id: "/donate" }, + { name: "Shop", id: "/shop" }, + { name: "Blog", id: "/blog" } ]} button={{ text: "Donate", href: "/donate" }} brandName="Hope Haven" @@ -90,4 +93,4 @@ export default function BlogPage() { ); -} +} \ No newline at end of file -- 2.49.1 From b0f0e26b4eb0389f59a516fe551a0689b830aeb0 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 13 Feb 2026 11:42:04 +0000 Subject: [PATCH 4/9] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 1630803..a14bbb8 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -11,31 +11,31 @@ export default function ContactPage() { { name: "Home", id: "/" }, { name: "Adopt", id: "/adopt" }, { name: "About", id: "/about" }, - { name: "Contact", id: "/contact" } + { name: "Contact", id: "/contact" }, + { name: "Donate", id: "/donate" }, + { name: "Shop", id: "/shop" }, + { name: "Blog", id: "/blog" } ]; const navButton = { text: "Donate", href: "/donate" }; const footerColumns = [ { - title: "About Us", - items: [ + title: "About Us", items: [ { label: "Our Mission", href: "/about" }, { label: "Meet the Team", href: "/about" }, { label: "Impact Report", href: "/about" } ] }, { - title: "Get Involved", - items: [ + title: "Get Involved", items: [ { label: "Adopt a Pet", href: "/adopt" }, { label: "Volunteer", href: "/contact" }, { label: "Foster a Pet", href: "/contact" } ] }, { - title: "Resources", - items: [ + title: "Resources", items: [ { label: "FAQs", href: "/contact" }, { label: "Pet Care Tips", href: "/" }, { label: "Contact Us", href: "/contact" } -- 2.49.1 From a3b8a3d1383e59f00c2b0871fe2cf3a941aa6325 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 13 Feb 2026 11:42:05 +0000 Subject: [PATCH 5/9] Update src/app/donate/page.tsx --- src/app/donate/page.tsx | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/app/donate/page.tsx b/src/app/donate/page.tsx index 84ecc8b..f1d7f66 100644 --- a/src/app/donate/page.tsx +++ b/src/app/donate/page.tsx @@ -11,31 +11,31 @@ export default function DonatePage() { { name: "Home", id: "/" }, { name: "Adopt", id: "/adopt" }, { name: "About", id: "/about" }, - { name: "Contact", id: "/contact" } + { name: "Contact", id: "/contact" }, + { name: "Donate", id: "/donate" }, + { name: "Shop", id: "/shop" }, + { name: "Blog", id: "/blog" } ]; const navButton = { text: "Donate", href: "/donate" }; const footerColumns = [ { - title: "About Us", - items: [ + title: "About Us", items: [ { label: "Our Mission", href: "/about" }, { label: "Meet the Team", href: "/about" }, { label: "Impact Report", href: "/about" } ] }, { - title: "Get Involved", - items: [ + title: "Get Involved", items: [ { label: "Adopt a Pet", href: "/adopt" }, { label: "Volunteer", href: "/contact" }, { label: "Foster a Pet", href: "/contact" } ] }, { - title: "Resources", - items: [ + title: "Resources", items: [ { label: "FAQs", href: "/contact" }, { label: "Pet Care Tips", href: "/" }, { label: "Contact Us", href: "/contact" } -- 2.49.1 From af43bd12c63980e0786cdf075aa377915837263a Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 13 Feb 2026 11:42:05 +0000 Subject: [PATCH 6/9] Update src/app/layout.tsx --- src/app/layout.tsx | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index c2fd0b8..87fa1eb 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -4,19 +4,15 @@ import { Inter } from "next/font/google"; import "./globals.css"; const publicSans = Public_Sans({ - variable: "--font-public-sans", - subsets: ["latin"], + variable: "--font-public-sans", subsets: ["latin"], }); const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], + variable: "--font-inter", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Hope Haven Animal Shelter", - description: "Every animal deserves a second chance. Discover your new best friend and join our mission to rescue, rehabilitate, and rehome pets in need.", -}; + title: "Hope Haven Animal Shelter", description: "Every animal deserves a second chance. Discover your new best friend and join our mission to rescue, rehabilitate, and rehome pets in need."}; export default function RootLayout({ children, -- 2.49.1 From ae5fb3100a277a5bf9622d8d3d7196269b3ed85d Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 13 Feb 2026 11:42:06 +0000 Subject: [PATCH 7/9] Update src/app/page.tsx --- src/app/page.tsx | 22 ++++++++-------------- 1 file changed, 8 insertions(+), 14 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 006d2b0..c71f058 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -16,31 +16,31 @@ export default function HomePage() { { name: "Home", id: "/" }, { name: "Adopt", id: "/adopt" }, { name: "About", id: "/about" }, - { name: "Contact", id: "/contact" } + { name: "Contact", id: "/contact" }, + { name: "Donate", id: "/donate" }, + { name: "Shop", id: "/shop" }, + { name: "Blog", id: "/blog" } ]; const navButton = { text: "Donate", href: "/donate" }; const footerColumns = [ { - title: "About Us", - items: [ + title: "About Us", items: [ { label: "Our Mission", href: "/about" }, { label: "Meet the Team", href: "/about" }, { label: "Impact Report", href: "/about" } ] }, { - title: "Get Involved", - items: [ + title: "Get Involved", items: [ { label: "Adopt a Pet", href: "/adopt" }, { label: "Volunteer", href: "/contact" }, { label: "Foster a Pet", href: "/contact" } ] }, { - title: "Resources", - items: [ + title: "Resources", items: [ { label: "FAQs", href: "/contact" }, { label: "Pet Care Tips", href: "/" }, { label: "Contact Us", href: "/contact" } @@ -172,13 +172,7 @@ export default function HomePage() { title="Our Valued Community Partners" description="We're grateful for the support of these organizations who help us make a difference." logos={[ - "https://img.b2bpic.net/free-vector/collection-colorful-pet-shop-stickers_23-2147569707.jpg", - "https://img.b2bpic.net/free-vector/veterinary-clinic-labels-collection_23-2149714004.jpg", - "https://img.b2bpic.net/free-psd/pets-template-design_23-2151517542.jpg", - "https://img.b2bpic.net/free-vector/veterinary-logo-collection_1346-55.jpg", - "https://img.b2bpic.net/free-vector/veterinary-clinic-logo-templates_23-2147536016.jpg", - "https://img.b2bpic.net/free-vector/vintage-cruelty-free-logo_23-2149452211.jpg", - "https://img.b2bpic.net/free-vector/logo-with-pet-design_1363-32.jpg" + "https://img.b2bpic.net/free-vector/collection-colorful-pet-shop-stickers_23-2147569707.jpg", "https://img.b2bpic.net/free-vector/veterinary-clinic-labels-collection_23-2149714004.jpg", "https://img.b2bpic.net/free-psd/pets-template-design_23-2151517542.jpg", "https://img.b2bpic.net/free-vector/veterinary-logo-collection_1346-55.jpg", "https://img.b2bpic.net/free-vector/veterinary-clinic-logo-templates_23-2147536016.jpg", "https://img.b2bpic.net/free-vector/vintage-cruelty-free-logo_23-2149452211.jpg", "https://img.b2bpic.net/free-vector/logo-with-pet-design_1363-32.jpg" ]} speed={40} showCard={true} -- 2.49.1 From 7734934021ded8394fa691984644988257db0e16 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 13 Feb 2026 11:42:07 +0000 Subject: [PATCH 8/9] Update src/app/shop/[id]/page.tsx --- src/app/shop/[id]/page.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/app/shop/[id]/page.tsx b/src/app/shop/[id]/page.tsx index 0aedc6a..8251649 100644 --- a/src/app/shop/[id]/page.tsx +++ b/src/app/shop/[id]/page.tsx @@ -88,7 +88,9 @@ export default function ProductPage({ params }: ProductPageProps) { { name: "Adopt", id: "/adopt" }, { name: "About", id: "/about" }, { name: "Contact", id: "/contact" }, - { name: "Shop", id: "/shop" } + { name: "Shop", id: "/shop" }, + { name: "Donate", id: "/donate" }, + { name: "Blog", id: "/blog" } ], brandName: "Hope Haven", className: "py-4", button: { text: "Cart", onClick: () => setCartOpen(true) } }; -- 2.49.1 From a7bf8c7fcde23fd77296d3ce7c0357340c2242fd Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 13 Feb 2026 11:42:08 +0000 Subject: [PATCH 9/9] Update src/app/shop/page.tsx --- src/app/shop/page.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx index 422a932..1cfe05b 100644 --- a/src/app/shop/page.tsx +++ b/src/app/shop/page.tsx @@ -38,7 +38,9 @@ export default function ShopPage() { { name: "Adopt", id: "/adopt" }, { name: "About", id: "/about" }, { name: "Contact", id: "/contact" }, - { name: "Shop", id: "/shop" } + { name: "Shop", id: "/shop" }, + { name: "Donate", id: "/donate" }, + { name: "Blog", id: "/blog" } ], brandName: "Hope Haven", className: "py-4", button: { text: "Cart", onClick: () => console.log("cart") } }; -- 2.49.1