From 8c6e6a518fb6bad12d4c243d1843cffb8f9713c0 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 16 Feb 2026 10:31:45 +0000 Subject: [PATCH 1/4] Update src/app/blog/page.tsx --- src/app/blog/page.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index 247bf08..be9ee33 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -1,7 +1,7 @@ "use client"; import ReactLenis from "lenis/react"; -import BlogCardThree from '@/components/sections/blog/BlogCardThree'; +import BlogCardOne from '@/components/sections/blog/BlogCardOne'; import FooterSimple from '@/components/sections/footer/FooterSimple'; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; @@ -43,7 +43,7 @@ export default function BlogPage() { ) : (
- Date: Mon, 16 Feb 2026 10:31:46 +0000 Subject: [PATCH 2/4] Update src/app/page.tsx --- src/app/page.tsx | 43 +++++++++++++++++++++++-------------------- 1 file changed, 23 insertions(+), 20 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 834a51b..f2d99ba 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -7,7 +7,7 @@ import HeroSignup from '@/components/sections/hero/HeroSignup'; import ProductCardOne from '@/components/sections/product/ProductCardOne'; import TextSplitAbout from '@/components/sections/about/TextSplitAbout'; import FeatureCardSix from '@/components/sections/feature/FeatureCardSix'; -import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen'; +import FeatureCardTwentyThree from '@/components/sections/feature/FeatureCardTwentyThree'; import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia'; import ContactText from '@/components/sections/contact/ContactText'; import FooterSimple from '@/components/sections/footer/FooterSimple'; @@ -120,38 +120,41 @@ export default function PetShelterPage() {
-
-- 2.49.1 From 18007799c6572e83e626fe075d5b7ce871ffb3c3 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 16 Feb 2026 10:31:47 +0000 Subject: [PATCH 3/4] Update src/app/shop/[id]/page.tsx --- src/app/shop/[id]/page.tsx | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/src/app/shop/[id]/page.tsx b/src/app/shop/[id]/page.tsx index 6baf9d4..5677967 100644 --- a/src/app/shop/[id]/page.tsx +++ b/src/app/shop/[id]/page.tsx @@ -89,8 +89,7 @@ export default function ProductPage({ params }: ProductPageProps) { { name: "Available Pets", id: "products" }, { name: "Adoption Process", id: "features" }, { name: "About Us", id: "about" }, - { name: "Contact", id: "contact" }, - { name: "Shop", id: "/shop" } + { name: "Contact", id: "contact" } ]} button={{ text: "Cart", onClick: () => setCartOpen(true) }} /> @@ -157,8 +156,7 @@ export default function ProductPage({ params }: ProductPageProps) { { name: "Available Pets", id: "products" }, { name: "Adoption Process", id: "features" }, { name: "About Us", id: "about" }, - { name: "Contact", id: "contact" }, - { name: "Shop", id: "/shop" } + { name: "Contact", id: "contact" } ]} button={{ text: "Cart", onClick: () => setCartOpen(true) }} /> @@ -232,8 +230,7 @@ export default function ProductPage({ params }: ProductPageProps) { { name: "Available Pets", id: "products" }, { name: "Adoption Process", id: "features" }, { name: "About Us", id: "about" }, - { name: "Contact", id: "contact" }, - { name: "Shop", id: "/shop" } + { name: "Contact", id: "contact" } ]} button={{ text: "Cart", onClick: () => setCartOpen(true) }} /> -- 2.49.1 From 2efee64eabf9b36669d0a6a9132fbb34173dacf6 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 16 Feb 2026 10:31:47 +0000 Subject: [PATCH 4/4] Update src/app/shop/page.tsx --- src/app/shop/page.tsx | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx index 4a9ce4c..732bd32 100644 --- a/src/app/shop/page.tsx +++ b/src/app/shop/page.tsx @@ -42,8 +42,7 @@ export default function ShopPage() { { name: "Available Pets", id: "products" }, { name: "Adoption Process", id: "features" }, { name: "About Us", id: "about" }, - { name: "Contact", id: "contact" }, - { name: "Shop", id: "/shop" } + { name: "Contact", id: "contact" } ]} button={{ text: "Cart", onClick: () => setCartOpen(true) }} /> @@ -109,8 +108,7 @@ export default function ShopPage() { { name: "Available Pets", id: "products" }, { name: "Adoption Process", id: "features" }, { name: "About Us", id: "about" }, - { name: "Contact", id: "contact" }, - { name: "Shop", id: "/shop" } + { name: "Contact", id: "contact" } ]} button={{ text: "Cart", onClick: () => setCartOpen(true) }} /> -- 2.49.1