Update src/app/donate/page.tsx

This commit is contained in:
2026-02-13 11:46:21 +00:00
parent 3a4c4b591b
commit 0d8160c193

View File

@@ -58,7 +58,7 @@ export default function DonatePage() {
headingFontWeight={"light"} headingFontWeight={"light"}
> >
<div id="nav" data-section="nav"> <div id="nav" data-section="nav">
<NavbarStyleCentered navItems={navItems.map(item => ({...item, id: item.id.startsWith('/') ? item.id : `#${item.id}`}))} button={navButton} brandName="Hope Haven" className="py-4" /> <NavbarStyleCentered navItems={navItems} button={navButton} brandName="Hope Haven" className="py-4" />
</div> </div>
<div id="get-involved" data-section="get-involved"> <div id="get-involved" data-section="get-involved">
@@ -66,7 +66,7 @@ export default function DonatePage() {
text="Your generosity changes lives. Every donation brings us closer to a world where every animal has a home." text="Your generosity changes lives. Every donation brings us closer to a world where every animal has a home."
animationType="background-highlight" animationType="background-highlight"
buttons={[{ text: "Donate Now", href: "#" }, { text: "Learn More", href: "/about" }]} buttons={[{ text: "Donate Now", href: "#" }, { text: "Learn More", href: "/about" }]}
background={{ variant: "aurora" }} background={{ variant: "sparkles-gradient" }}
useInvertedBackground={false} useInvertedBackground={false}
ariaLabel="Call to action for donations" ariaLabel="Call to action for donations"
textClassName="font-light" textClassName="font-light"
@@ -86,7 +86,7 @@ export default function DonatePage() {
textboxLayout="default" textboxLayout="default"
useInvertedBackground={false} useInvertedBackground={false}
tag="Making a Difference" tag="Making a Difference"
titleClassName="font-light" textBoxTitleClassName="font-light"
textBoxDescriptionClassName="font-light" textBoxDescriptionClassName="font-light"
metricTitleClassName="font-light" metricTitleClassName="font-light"
/> />
@@ -107,7 +107,6 @@ export default function DonatePage() {
avatarsAnimation="slide-up" avatarsAnimation="slide-up"
useInvertedBackground={false} useInvertedBackground={false}
testimonialClassName="font-light" testimonialClassName="font-light"
authorClassName="font-light"
/> />
</div> </div>
@@ -115,7 +114,6 @@ export default function DonatePage() {
columns={footerColumns} columns={footerColumns}
logoText="Hope Haven" logoText="Hope Haven"
copyrightText="© 2024 Hope Haven Animal Shelter. All rights reserved." copyrightText="© 2024 Hope Haven Animal Shelter. All rights reserved."
useInvertedBackground={false}
/> />
</ThemeProvider> </ThemeProvider>
); );