diff --git a/src/pages/Index.tsx b/src/pages/Index.tsx new file mode 100644 index 0000000..fcb2106 --- /dev/null +++ b/src/pages/Index.tsx @@ -0,0 +1,178 @@ +import { Link } from "react-router-dom"; +import { Button } from "@/components/ui/button"; +import { Card, CardContent } from "@/components/ui/card"; +import { Heart, Droplets, BookOpen, Stethoscope, TreePine, Globe, Users, HandHeart, Quote, ArrowRight } from "lucide-react"; +import Header from "@/components/Header"; +import Footer from "@/components/Footer"; + +export default function IndexPage() { + const stats = [ + { value: "50K+", label: "Lives Changed" }, + { value: "320", label: "Projects Funded" }, + { value: "28", label: "Countries Reached" }, + { value: "2,400+", label: "Active Volunteers" }, + ]; + + const programs = [ + { icon: Droplets, title: "Clean Water Access", desc: "Building wells and filtration systems to provide safe drinking water to underserved communities worldwide." }, + { icon: BookOpen, title: "Education for All", desc: "Funding schools, training teachers, and providing scholarships to children who lack access to quality education." }, + { icon: Stethoscope, title: "Community Healthcare", desc: "Deploying mobile clinics and training health workers to deliver essential medical care to remote areas." }, + { icon: TreePine, title: "Sustainable Agriculture", desc: "Teaching regenerative farming practices that improve food security and protect the environment." }, + ]; + + const stories = [ + { name: "Amara Osei", quote: "Before the well was built, my children walked three hours each day for water. Now they attend school instead. This changed everything for our family.", location: "Tamale, Ghana" }, + { name: "Priya Sharma", quote: "The scholarship gave me hope. I was the first girl in my village to finish secondary school, and now I am studying to become a doctor.", location: "Bihar, India" }, + { name: "Carlos Mendez", quote: "The farming program taught us techniques that tripled our harvest. We no longer worry about feeding our families during the dry season.", location: "Oaxaca, Mexico" }, + ]; + + const partners = ["UNICEF", "World Bank", "Red Cross", "WHO", "Oxfam", "CARE Intl."]; + + return ( +
+
+ + {/* ── Hero ── */} +
+
+
+
+ Making a difference since 2010 +
+

Together We Can Change the World

+

We empower communities through clean water, education, and healthcare programs that create lasting, sustainable change across the globe.

+
+ + +
+
+ {stats.map((s, i) => ( +
+

{s.value}

+

{s.label}

+
+ ))} +
+
+
+ + {/* ── Mission ── */} +
+
+

Our Mission

+

We believe every person deserves access to clean water, quality education, and essential healthcare. Our mission is to empower communities to build sustainable futures through compassion, innovation, and partnership.

+
+
+ + {/* ── Programs ── */} +
+
+
+

What We Do

+

Our Programs

+
+
+ {programs.map((p, i) => ( + + +
+ +
+

{p.title}

+

{p.desc}

+ + Learn More + +
+
+ ))} +
+
+
+ + {/* ── Impact ── */} +
+
+
+

Our Impact

+

Numbers That Matter

+
+
+ {[ + { value: "2.5M+", label: "People with clean water" }, + { value: "180K", label: "Children educated" }, + { value: "95%", label: "Funds to programs" }, + { value: "1,200+", label: "Communities served" }, + ].map((m, i) => ( +
+

{m.value}

+

{m.label}

+
+ ))} +
+
+
+ + {/* ── Stories ── */} +
+
+
+

Real Stories

+

Lives We Have Touched

+
+
+ {stories.map((s, i) => ( + + + +

{s.quote}

+
+
+ {s.name.charAt(0)} +
+
+

{s.name}

+

{s.location}

+
+
+
+
+ ))} +
+
+
+ + {/* ── Partners ── */} +
+
+

Trusted Partners

+
+ {partners.map((p, i) => ( +
+ {p} +
+ ))} +
+
+
+ + {/* ── CTA ── */} +
+
+ +

Make a Difference Today

+

Your generosity creates lasting change. Every donation, no matter the size, helps us build a better world for communities in need.

+ +
+
+ +
+ ); +} \ No newline at end of file