diff --git a/app/(main)/components/MakeAnImpact.tsx b/app/(main)/components/MakeAnImpact.tsx new file mode 100644 index 0000000..54b503f --- /dev/null +++ b/app/(main)/components/MakeAnImpact.tsx @@ -0,0 +1,35 @@ +import Link from "next/link"; +import { Button } from "@/components/ui/Button"; + +const MakeAnImpact = () => { + return ( +
+
+ {/* Heading */} +

+ Ready to make an impact? +

+ + {/* Subtext */} +

+ Join thousands of donors supporting causes they believe in with complete transparency. +

+ + {/* CTA Button */} + + + +
+
+ ); +}; + +export default MakeAnImpact; diff --git a/app/(main)/page.tsx b/app/(main)/page.tsx index 0594c68..a5de59f 100644 --- a/app/(main)/page.tsx +++ b/app/(main)/page.tsx @@ -1,6 +1,7 @@ import { WhyChooseUs } from "./components/WhyChooseUs"; import Footer from "./components/Footer"; import HeroPage from "./components/HeroPage"; +import MakeAnImpact from "./components/MakeAnImpact"; export default function HomePage() { return ( @@ -10,6 +11,8 @@ export default function HomePage() {
+ {/* ── Make an Impact ───────────────────────────────────────────── */} +