From 0dff1289bc25cab7ac88efca6b203a9bc0d3a774 Mon Sep 17 00:00:00 2001 From: "Abdulmalik A. (Personal)" Date: Thu, 26 Mar 2026 14:09:21 +0100 Subject: [PATCH] feat(impact section): add make an impact section --- app/(main)/components/MakeAnImpact.tsx | 35 ++++++++++++++++++++++++++ app/(main)/page.tsx | 3 +++ 2 files changed, 38 insertions(+) create mode 100644 app/(main)/components/MakeAnImpact.tsx 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 ───────────────────────────────────────────── */} +