Update src/app/contact/page.tsx

This commit is contained in:
2026-02-13 13:18:18 +00:00
parent 24fad2b987
commit 2232b3f1f7

View File

@@ -27,12 +27,13 @@ export default function ContactPage() {
{
title: "About", items: [
{ label: "Our Mission", href: "/about" },
{ label: "Success Stories", href: "/about" },
{ label: "Success Stories", href: "/#testimonials" },
{ label: "Team", href: "#" },
],
},
{
title: "Support", items: [
{ label: "FAQ", href: "/adopt" },
{ label: "FAQ", href: "/adopt#faq" },
{ label: "Contact Us", href: "/contact" },
{ label: "Privacy Policy", href: "#" },
],
@@ -55,7 +56,7 @@ export default function ContactPage() {
<div id="nav" data-section="nav">
<NavbarStyleApple
brandName="Paw Haven"
navItems={navItems.map(item => ({...item, name: <Link href={item.id}>{item.name}</Link>}))}
navItems={navItems}
logoHref="/"
/>
</div>
@@ -71,9 +72,6 @@ export default function ContactPage() {
termsText="By submitting, you agree to receive updates from Paw Haven."
onSubmit={(email) => console.log(email)}
useInvertedBackground={false}
className="py-20 md:py-32"
titleClassName="text-3xl md:text-5xl font-light"
descriptionClassName="text-lg md:text-xl"
/>
</div>
@@ -91,9 +89,6 @@ export default function ContactPage() {
faqsAnimation="slide-up"
textboxLayout="default"
useInvertedBackground={false}
className="py-20 md:py-32"
textBoxTitleClassName="text-3xl md:text-5xl font-light"
textBoxDescriptionClassName="text-lg md:text-xl"
/>
</div>
@@ -107,8 +102,6 @@ export default function ContactPage() {
buttons={[{ "text": "Learn More About Us", "href": "/about" }]}
buttonAnimation="slide-up"
useInvertedBackground={false}
className="py-20 md:py-32"
headingClassName="text-3xl md:text-5xl lg:text-6xl font-light leading-tight"
/>
</div>
@@ -117,7 +110,6 @@ export default function ContactPage() {
columns={footerColumns}
bottomLeftText="© 2024 Paw Haven. All rights reserved."
bottomRightText="Made with Love for Animals"
className="py-10"
/>
</div>
</ThemeProvider>