From 2b3409b98e9c238aec758e7cd697adb7f75765be Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 20 Feb 2026 12:27:41 +0000 Subject: [PATCH 1/6] Add src/app/about/page.tsx --- src/app/about/page.tsx | 134 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 134 insertions(+) create mode 100644 src/app/about/page.tsx diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx new file mode 100644 index 0000000..25a15fe --- /dev/null +++ b/src/app/about/page.tsx @@ -0,0 +1,134 @@ +"use client" + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; +import HeroSplitDualMedia from '@/components/sections/hero/HeroSplitDualMedia'; +import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix'; +import FooterSimple from '@/components/sections/footer/FooterSimple'; +import { Heart, Sparkles } from 'lucide-react'; + +export default function AboutPage() { + return ( + + + +
+ +
+ +
+ +
+ + +
+ ); +} -- 2.49.1 From 976c1e96c2e5f63b1e7d3644dce4efa4b7af8f4c Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 20 Feb 2026 12:27:42 +0000 Subject: [PATCH 2/6] Update src/app/blog/page.tsx --- src/app/blog/page.tsx | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index 3a68632..c6bf88c 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -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" }} /> @@ -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() { ); -} \ No newline at end of file +} -- 2.49.1 From ab13a0d70444a6070862bb5371500de590234296 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 20 Feb 2026 12:27:43 +0000 Subject: [PATCH 3/6] Update src/app/layout.tsx --- src/app/layout.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 309ada1..c087b09 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1413,4 +1413,4 @@ export default function RootLayout({ ); -} \ No newline at end of file +} -- 2.49.1 From 0ef76f9530cb4a4fd0a04066a02e963a404ef1c7 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 20 Feb 2026 12:27:44 +0000 Subject: [PATCH 4/6] Update src/app/page.tsx --- src/app/page.tsx | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 9bce2d4..7fc901d 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -30,9 +30,10 @@ export default function LandingPage() { ); -} \ No newline at end of file +} -- 2.49.1 From 57abd3038e91d39be513ee892a3f07cd6bf384c4 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 20 Feb 2026 12:27:45 +0000 Subject: [PATCH 5/6] Update src/app/shop/[id]/page.tsx --- src/app/shop/[id]/page.tsx | 38 +++++++++++++++++++------------------- 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/src/app/shop/[id]/page.tsx b/src/app/shop/[id]/page.tsx index fa9d913..f8c9b20 100644 --- a/src/app/shop/[id]/page.tsx +++ b/src/app/shop/[id]/page.tsx @@ -86,11 +86,11 @@ export default function ProductPage({ params }: ProductPageProps) { 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)}} /> @@ -101,7 +101,7 @@ export default function ProductPage({ params }: ProductPageProps) {