Add src/app/pets/page.tsx

This commit is contained in:
2026-03-03 13:28:50 +00:00
parent b82df309b8
commit 5c0089cc8a

131
src/app/pets/page.tsx Normal file
View File

@@ -0,0 +1,131 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import HeroLogo from '@/components/sections/hero/HeroLogo';
import ProductCardFour from '@/components/sections/product/ProductCardFour';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import { Package } from "lucide-react";
export default function PetsPage() {
return (
<ThemeProvider
defaultButtonVariant="icon-arrow"
defaultTextAnimation="entrance-slide"
borderRadius="rounded"
contentWidth="smallMedium"
sizing="largeSizeMediumTitles"
background="aurora"
cardStyle="soft-shadow"
primaryButtonStyle="double-inset"
secondaryButtonStyle="radial-glow"
headingFontWeight="extrabold"
>
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "about" },
{ name: "Adopt", id: "product" },
{ name: "Pets", id: "/pets" },
{ name: "Testimonials", id: "testimonial" },
{ name: "Contact", id: "contact" }
]}
brandName="PawShelter"
bottomLeftText="Saving Lives, One Paw at a Time"
bottomRightText="info@pawshelter.org"
/>
</div>
<div id="hero" data-section="hero">
<HeroLogo
logoText="Meet Our Pets"
description="Explore our complete listing of available pets waiting for their forever homes. Each profile includes detailed information about personality, age, and care requirements."
buttons={[
{ text: "Back to Home", href: "/" },
{ text: "Contact Us", href: "contact" }
]}
imageSrc="http://img.b2bpic.net/free-photo/elegant-fashion-girls-summer-park_1157-21448.jpg"
imageAlt="Our available pets"
showDimOverlay={true}
/>
</div>
<div id="pets" data-section="pets">
<ProductCardFour
title="Complete Pet Listings"
description="Browse all available pets currently in our care. Filter by type, age, size, and temperament to find your perfect match."
tag="All Available Pets"
tagIcon={Package}
products={[
{
id: "1", name: "Luna - Golden Retriever", price: "Adoption Fee: $150", variant: "4 years old • Female • Friendly & Gentle", imageSrc: "http://img.b2bpic.net/free-photo/cute-golden-retriever-dog_1204-387.jpg", imageAlt: "Luna the golden retriever"
},
{
id: "2", name: "Whiskers - Orange Tabby", price: "Adoption Fee: $75", variant: "2 years old • Male • Playful & Affectionate", imageSrc: "http://img.b2bpic.net/free-photo/adorable-little-baby-kitten-walking_658552-2.jpg", imageAlt: "Whiskers the orange tabby cat"
},
{
id: "3", name: "Max - German Shepherd Mix", price: "Adoption Fee: $200", variant: "5 years old • Male • Loyal & Protective", imageSrc: "http://img.b2bpic.net/free-photo/closeup-shot-cute-puppy_181624-21270.jpg", imageAlt: "Max the German Shepherd mix"
},
{
id: "4", name: "Bella - Labrador Retriever", price: "Adoption Fee: $175", variant: "3 years old • Female • Energetic & Smart", imageSrc: "http://img.b2bpic.net/free-photo/studio-shot-adorable-puppy_1157-21448.jpg", imageAlt: "Bella the Labrador Retriever"
},
{
id: "5", name: "Shadow - Black Cat", price: "Adoption Fee: $75", variant: "1 year old • Male • Curious & Independent", imageSrc: "http://img.b2bpic.net/free-photo/black-cat-standing_1157-21450.jpg", imageAlt: "Shadow the black cat"
},
{
id: "6", name: "Rocky - Boxer", price: "Adoption Fee: $225", variant: "6 years old • Male • Calm & Loving", imageSrc: "http://img.b2bpic.net/free-photo/boxer-dog-portrait_1157-21451.jpg", imageAlt: "Rocky the Boxer"
},
{
id: "7", name: "Mittens - Calico Cat", price: "Adoption Fee: $80", variant: "3 years old • Female • Sweet & Gentle", imageSrc: "http://img.b2bpic.net/free-photo/calico-cat-playing_1157-21452.jpg", imageAlt: "Mittens the Calico cat"
},
{
id: "8", name: "Cooper - Beagle", price: "Adoption Fee: $160", variant: "2 years old • Male • Friendly & Adventurous", imageSrc: "http://img.b2bpic.net/free-photo/beagle-puppy-sitting_1157-21453.jpg", imageAlt: "Cooper the Beagle"
}
]}
gridVariant="four-items-2x2-equal-grid"
textboxLayout="default"
animationType="slide-up"
useInvertedBackground={false}
/>
</div>
<div id="footer" data-section="footer">
<FooterBaseCard
logoText="PawShelter"
columns={[
{
title: "Adopt", items: [
{ label: "Available Pets", href: "/pets" },
{ label: "Adoption Process", href: "#" },
{ label: "Success Stories", href: "testimonial" }
]
},
{
title: "Support", items: [
{ label: "Volunteer", href: "contact" },
{ label: "Donate", href: "#" },
{ label: "Become a Sponsor", href: "#" }
]
},
{
title: "About", items: [
{ label: "Our Mission", href: "about" },
{ label: "Meet the Team", href: "#" },
{ label: "Contact Us", href: "contact" }
]
},
{
title: "Resources", items: [
{ label: "Pet Care Tips", href: "#" },
{ label: "Blog", href: "#" },
{ label: "FAQ", href: "#" }
]
}
]}
copyrightText="© 2025 PawShelter. All rights reserved. Saving lives, one paw at a time."
/>
</div>
</ThemeProvider>
);
}