From 629b821dbcb5bc8935ad6e2fdf482705868e13d1 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 17 Feb 2026 14:45:44 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index a558c04..1a6de5e 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -91,10 +91,10 @@ export default function SitePage() { description="Read inspiring stories from families who found their furry companions at Paw Haven." tag="Our Community" testimonials={[ - {id: '1', name: 'Sarah & Tom Davis', role: 'New Pet Parents', testimonial: 'Adopting our dog, Bella, from Paw Haven was the best decision we ever made. She\'s brought so much joy into our lives! The team was incredibly supportive throughout the process.', imageSrc: 'https://img.b2bpic.net/free-photo/woman-playing-with-rescue-dogs-shelter_23-2148682984.jpg', imageAlt: 'Happy couple with adopted dog Bella'}, - {id: '2', name: 'Emily Rodriguez', role: 'Cat Lover', testimonial: 'Our cat, Whiskers, found her forever home with us thanks to Paw Haven. She\'s the most affectionate cat, and we couldn\'t imagine life without her. Thank you for your amazing work!', imageSrc: 'https://img.b2bpic.net/free-photo/medium-shot-smiley-women-with-cute-rabbit_23-2149514560.jpg', imageAlt: 'Child playing with adopted cat Whiskers'}, + {id: '1', name: 'Sarah & Tom Davis', role: 'New Pet Parents', testimonial: "Adopting our dog, Bella, from Paw Haven was the best decision we ever made. She's brought so much joy into our lives! The team was incredibly supportive throughout the process.", imageSrc: 'https://img.b2bpic.net/free-photo/woman-playing-with-rescue-dogs-shelter_23-2148682984.jpg', imageAlt: 'Happy couple with adopted dog Bella'}, + {id: '2', name: 'Emily Rodriguez', role: 'Cat Lover', testimonial: "Our cat, Whiskers, found her forever home with us thanks to Paw Haven. She's the most affectionate cat, and we couldn't imagine life without her. Thank you for your amazing work!", imageSrc: 'https://img.b2bpic.net/free-photo/medium-shot-smiley-women-with-cute-rabbit_23-2149514560.jpg', imageAlt: 'Child playing with adopted cat Whiskers'}, {id: '3', name: 'Mark & Lisa Chen', role: 'Rescue Advocates', testimonial: 'We adopted our senior dog, Charlie, from Paw Haven. Despite his age, he\'s full of life and love. The shelter\'s dedication to older pets is truly remarkable. Highly recommend!', imageSrc: 'https://img.b2bpic.net/free-photo/happy-family-feeding-horse-stable_23-2147562174.jpg', imageAlt: 'Elderly person with adopted dog Charlie'}, - {id: '4', name: 'Jessica & David Lee', role: 'Multi-Pet Family', testimonial: 'Paw Haven helped us grow our family by two. Their staff ensured a smooth adoption process for both our dog and cat. We\'re so grateful for their commitment to animal welfare.', imageSrc: 'https://img.b2bpic.net/free-photo/women-shelter-playing-with-cute-rescue-dogs_23-2148682939.jpg', imageAlt: 'Family with multiple adopted pets'} + {id: '4', name: 'Jessica & David Lee', role: 'Multi-Pet Family', testimonial: "Paw Haven helped us grow our family by two. Their staff ensured a smooth adoption process for both our dog and cat. We're so grateful for their commitment to animal welfare.", imageSrc: 'https://img.b2bpic.net/free-photo/women-shelter-playing-with-cute-rescue-dogs_23-2148682939.jpg', imageAlt: 'Family with multiple adopted pets'} ]} textboxLayout="default" animationType="slide-up" @@ -124,8 +124,8 @@ export default function SitePage() { sideDescription="Find answers to common questions about adoption, volunteering, and supporting Paw Haven." faqs={[ {id: '1', title: 'What is the adoption process?', content: 'Our adoption process typically involves an application, a meet-and-greet with the pet, and a home visit to ensure a good match. Our team will guide you through every step.'}, - {id: '2', title: 'How can I volunteer?', content: 'We welcome volunteers! You can fill out a volunteer application on our website, and we\'ll connect you with opportunities like dog walking, cat socialization, or event support.'}, - {id: '3', title: 'What types of donations do you accept?', content: 'We gratefully accept monetary donations, pet food, blankets, toys, and other supplies. Visit our \'Donate\' section for a full list of needed items.'}, + {id: '2', title: 'How can I volunteer?', content: "We welcome volunteers! You can fill out a volunteer application on our website, and we'll connect you with opportunities like dog walking, cat socialization, or event support."}, + {id: '3', title: 'What types of donations do you accept?', content: "We gratefully accept monetary donations, pet food, blankets, toys, and other supplies. Visit our 'Donate' section for a full list of needed items."}, {id: '4', title: 'Can I foster an animal?', content: 'Yes, fostering is a wonderful way to help! We provide all necessary supplies and medical care for foster animals. Contact us to learn more about becoming a foster parent.'}, {id: '5', title: 'Do you offer pet surrender services?', content: 'We understand that circumstances can change. Please contact us directly to discuss our surrender policy and available resources.'} ]} -- 2.49.1 From f1c6cd338fe4ffb9e12733267f99265d8025fa0a Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 17 Feb 2026 14:45:45 +0000 Subject: [PATCH 2/2] Update src/app/shop/[id]/page.tsx --- src/app/shop/[id]/page.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/app/shop/[id]/page.tsx b/src/app/shop/[id]/page.tsx index 888e01f..52ecec2 100644 --- a/src/app/shop/[id]/page.tsx +++ b/src/app/shop/[id]/page.tsx @@ -36,6 +36,7 @@ export default function ProductPage({ params }: ProductPageProps) { items: cartItems, isOpen: cartOpen, setIsOpen: setCartOpen, + addItem, updateQuantity, removeItem, total: cartTotal, -- 2.49.1