Update src/app/adopt/page.tsx

This commit is contained in:
2026-02-13 12:12:34 +00:00
parent 9a77b37368
commit 6849d9a9ac

View File

@@ -2,12 +2,12 @@
import React from "react";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import { PawPrint, HelpCircle, Star } from "lucide-react";
import { PawPrint, HelpCircle, Star, MapPin } from "lucide-react";
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import ProductCardFour from '@/components/sections/product/ProductCardFour';
import FaqBase from '@/components/sections/faq/FaqBase';
import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive';
import ContactFaq from '@/components/sections/contact/ContactFaq';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
export default function AdoptPage() {
@@ -38,7 +38,7 @@ export default function AdoptPage() {
headingFontWeight="bold"
>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay brandName="Paws & Hearts" navItems={navItems} button={{ text: "Adopt Now", href: "/adopt" }} />
<NavbarLayoutFloatingOverlay brandName="Golden Paws" navItems={navItems} button={{ text: "Adopt Now", href: "/adopt" }} />
</div>
<div id="pets-list" data-section="pets-list">
@@ -61,19 +61,18 @@ export default function AdoptPage() {
</div>
<div id="adoption-faq" data-section="adoption-faq">
<FaqBase
title="Adoption Questions"
description="Everything you need to know about bringing a new family member home."
tag="Process"
tagIcon={HelpCircle}
<ContactFaq
ctaTitle="Ready to Adopt?"
ctaDescription="Our adoption counselors are here to help you find the perfect match for your lifestyle."
ctaButton={{ text: "Contact Counselors", href: "/contact" }}
ctaIcon={MapPin}
faqs={[
{ id: 'f1', title: 'What is the adoption process?', content: 'Our process involves an application, a brief interview, and a meet-and-greet.' },
{ id: 'f2', title: 'What do the adoption fees cover?', content: 'Fees cover vaccinations, spay/neuter, microchipping, and a wellness exam.' },
{ id: 'f3', title: 'Can I foster an animal instead?', content: 'Yes! Fostering is a vital part of our mission.' }
]}
textboxLayout="default"
useInvertedBackground={true}
faqsAnimation="blur-reveal"
]}
useInvertedBackground={true}
animationType="slide-up"
/>
</div>
@@ -93,8 +92,8 @@ export default function AdoptPage() {
</div>
<div id="footer" data-section="footer">
<FooterBaseCard logoText="Paws & Hearts" columns={footerColumns} copyrightText="© 2025 | Paws & Hearts Animal Shelter" />
<FooterBaseCard logoText="Golden Paws" columns={footerColumns} copyrightText="© 2025 | Golden Paws Animal Shelter" />
</div>
</ThemeProvider>
);
}
}