From 8e76e9ea3e1c99c39beb9b31d7c849dad8105b9d Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 27 Feb 2026 14:50:41 +0000 Subject: [PATCH 1/2] 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 3b3416a..51bb072 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1412,4 +1412,4 @@ export default function RootLayout({ ); -} \ No newline at end of file +} -- 2.49.1 From 8b3ef01c2d26ed68af95e05c167b276a4ad1aa25 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 27 Feb 2026 14:50:42 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 43 ++++++++++++++++++++++++++++--------------- 1 file changed, 28 insertions(+), 15 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 0647948..bdddbbe 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,7 +2,7 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; -import HeroOverlay from '@/components/sections/hero/HeroOverlay'; +import HeroBillboardCarousel from '@/components/sections/hero/HeroBillboardCarousel'; import TextAbout from '@/components/sections/about/TextAbout'; import ProductCardThree from '@/components/sections/product/ProductCardThree'; import FeatureCardEight from '@/components/sections/feature/FeatureCardEight'; @@ -42,19 +42,32 @@ export default function PetShelterPage() {
-
@@ -77,13 +90,13 @@ export default function PetShelterPage() { tag="New Arrivals" products={[ { - id: "1", name: "Max - Golden Retriever Mix", price: "Adoption Fee: $150", imageSrc: "http://img.b2bpic.net/free-photo/happy-couple-guys-playing-with-their-dog-backyard-grass-cheerful-old-dog_158595-6547.jpg?_wi=1", imageAlt: "Max, a friendly golden retriever mix", initialQuantity: 1 + id: "1", name: "Max - Golden Retriever Mix", price: "Adoption Fee: $150", imageSrc: "http://img.b2bpic.net/free-photo/happy-couple-guys-playing-with-their-dog-backyard-grass-cheerful-old-dog_158595-6547.jpg", imageAlt: "Max, a friendly golden retriever mix", initialQuantity: 1 }, { - id: "2", name: "Luna - Tabby Cat", price: "Adoption Fee: $75", imageSrc: "http://img.b2bpic.net/free-photo/little-boy-holds-black-white-kitty-his-shoulder_8353-8632.jpg?_wi=1", imageAlt: "Luna, a beautiful tabby cat", initialQuantity: 1 + id: "2", name: "Luna - Tabby Cat", price: "Adoption Fee: $75", imageSrc: "http://img.b2bpic.net/free-photo/little-boy-holds-black-white-kitty-his-shoulder_8353-8632.jpg", imageAlt: "Luna, a beautiful tabby cat", initialQuantity: 1 }, { - id: "3", name: "Hop - Holland Lop Rabbit", price: "Adoption Fee: $50", imageSrc: "http://img.b2bpic.net/free-photo/girl-plays-with-domestic-rabbit-street-pet-concept_169016-62268.jpg?_wi=1", imageAlt: "Hop, an adorable Holland Lop rabbit", initialQuantity: 1 + id: "3", name: "Hop - Holland Lop Rabbit", price: "Adoption Fee: $50", imageSrc: "http://img.b2bpic.net/free-photo/girl-plays-with-domestic-rabbit-street-pet-concept_169016-62268.jpg", imageAlt: "Hop, an adorable Holland Lop rabbit", initialQuantity: 1 } ]} gridVariant="three-columns-all-equal-width" @@ -105,15 +118,15 @@ export default function PetShelterPage() { }, { id: 2, - title: "Health Screening", description: "All our pets receive veterinary care, vaccinations, and health checks before adoption, ensuring your new companion is healthy.", imageSrc: "http://img.b2bpic.net/free-photo/happy-couple-guys-playing-with-their-dog-backyard-grass-cheerful-old-dog_158595-6547.jpg?_wi=2" + title: "Health Screening", description: "All our pets receive veterinary care, vaccinations, and health checks before adoption, ensuring your new companion is healthy.", imageSrc: "http://img.b2bpic.net/free-photo/happy-couple-guys-playing-with-their-dog-backyard-grass-cheerful-old-dog_158595-6547.jpg" }, { id: 3, - title: "Expert Support", description: "Our team provides ongoing support and guidance to help your pet adjust to their new home. We're here every step of the way.", imageSrc: "http://img.b2bpic.net/free-photo/little-boy-holds-black-white-kitty-his-shoulder_8353-8632.jpg?_wi=2" + title: "Expert Support", description: "Our team provides ongoing support and guidance to help your pet adjust to their new home. We're here every step of the way.", imageSrc: "http://img.b2bpic.net/free-photo/little-boy-holds-black-white-kitty-his-shoulder_8353-8632.jpg" }, { id: 4, - title: "Lower Costs", description: "Adoption fees are significantly lower than breeder prices, and your pet is already spayed/neutered and vaccinated.", imageSrc: "http://img.b2bpic.net/free-photo/girl-plays-with-domestic-rabbit-street-pet-concept_169016-62268.jpg?_wi=2" + title: "Lower Costs", description: "Adoption fees are significantly lower than breeder prices, and your pet is already spayed/neutered and vaccinated.", imageSrc: "http://img.b2bpic.net/free-photo/girl-plays-with-domestic-rabbit-street-pet-concept_169016-62268.jpg" } ]} textboxLayout="default" @@ -148,7 +161,7 @@ export default function PetShelterPage() { ); -} \ No newline at end of file +} -- 2.49.1