Update src/app/page.tsx
This commit is contained in:
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
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 TextAbout from '@/components/sections/about/TextAbout';
|
||||||
import ProductCardThree from '@/components/sections/product/ProductCardThree';
|
import ProductCardThree from '@/components/sections/product/ProductCardThree';
|
||||||
import FeatureCardEight from '@/components/sections/feature/FeatureCardEight';
|
import FeatureCardEight from '@/components/sections/feature/FeatureCardEight';
|
||||||
@@ -42,19 +42,32 @@ export default function PetShelterPage() {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<HeroOverlay
|
<HeroBillboardCarousel
|
||||||
title="Find Your Perfect Companion"
|
title="Find Your Perfect Companion"
|
||||||
description="Welcome to Happy Paws Shelter. Discover loving pets waiting for their forever homes. Every adoption saves a life and brings joy to a family."
|
description="Welcome to Happy Paws Shelter. Discover loving pets waiting for their forever homes. Every adoption saves a life and brings joy to a family."
|
||||||
tag="Open Hearts, Open Homes"
|
tag="Open Hearts, Open Homes"
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/young-parents-their-small-daughter-enjoying-with-dog-home-grandparents-are-standing-background_637285-5542.jpg?_wi=1"
|
mediaItems={[
|
||||||
imageAlt="Happy families with adopted pets"
|
{
|
||||||
textPosition="center"
|
imageSrc: "http://img.b2bpic.net/free-photo/young-parents-their-small-daughter-enjoying-with-dog-home-grandparents-are-standing-background_637285-5542.jpg", imageAlt: "Happy families with adopted pets"
|
||||||
showBlur={true}
|
},
|
||||||
showDimOverlay={true}
|
{
|
||||||
|
imageSrc: "http://img.b2bpic.net/free-photo/happy-couple-guys-playing-with-their-dog-backyard-grass-cheerful-old-dog_158595-6547.jpg", imageAlt: "Couple playing with dog in backyard"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
imageSrc: "http://img.b2bpic.net/free-photo/little-boy-holds-black-white-kitty-his-shoulder_8353-8632.jpg", imageAlt: "Boy holding white and black kitten"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
imageSrc: "http://img.b2bpic.net/free-photo/girl-plays-with-domestic-rabbit-street-pet-concept_169016-62268.jpg", imageAlt: "Girl playing with domestic rabbit"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
imageSrc: "http://img.b2bpic.net/free-photo/woman-playing-with-rescue-dogs-shelter_23-2148682984.jpg", imageAlt: "Woman playing with rescue dogs at shelter"
|
||||||
|
}
|
||||||
|
]}
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Browse Pets", href: "featured" },
|
{ text: "Browse Pets", href: "featured" },
|
||||||
{ text: "Learn More", href: "about" }
|
{ text: "Learn More", href: "about" }
|
||||||
]}
|
]}
|
||||||
|
background={{ variant: "plain" }}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -77,13 +90,13 @@ export default function PetShelterPage() {
|
|||||||
tag="New Arrivals"
|
tag="New Arrivals"
|
||||||
products={[
|
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"
|
gridVariant="three-columns-all-equal-width"
|
||||||
@@ -105,15 +118,15 @@ export default function PetShelterPage() {
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: 2,
|
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,
|
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,
|
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"
|
textboxLayout="default"
|
||||||
@@ -148,7 +161,7 @@ export default function PetShelterPage() {
|
|||||||
<TestimonialCardTwelve
|
<TestimonialCardTwelve
|
||||||
testimonials={[
|
testimonials={[
|
||||||
{
|
{
|
||||||
id: "1", name: "Sarah Mitchell", imageSrc: "http://img.b2bpic.net/free-photo/young-parents-their-small-daughter-enjoying-with-dog-home-grandparents-are-standing-background_637285-5542.jpg?_wi=2"
|
id: "1", name: "Sarah Mitchell", imageSrc: "http://img.b2bpic.net/free-photo/young-parents-their-small-daughter-enjoying-with-dog-home-grandparents-are-standing-background_637285-5542.jpg"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "2", name: "James and Lisa Chen", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-smiley-couple-with-cute-cat_23-2149078326.jpg"
|
id: "2", name: "James and Lisa Chen", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-smiley-couple-with-cute-cat_23-2149078326.jpg"
|
||||||
|
|||||||
Reference in New Issue
Block a user