From ba7f8ac3c611dcd813202c6fe5f327f98937e4b7 Mon Sep 17 00:00:00 2001 From: jyswee Date: Thu, 23 Jul 2026 22:13:48 +0000 Subject: [PATCH] Seed: nonprofit template (15 files) --- src/pages/About.tsx | 159 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 159 insertions(+) create mode 100644 src/pages/About.tsx diff --git a/src/pages/About.tsx b/src/pages/About.tsx new file mode 100644 index 0000000..4ea9533 --- /dev/null +++ b/src/pages/About.tsx @@ -0,0 +1,159 @@ +import { Link } from "react-router-dom"; +import { Button } from "@/components/ui/button"; +import { Card, CardContent } from "@/components/ui/card"; +import { Heart, Target, Eye, Sparkles, Shield, Users, Handshake, Download, Linkedin, Twitter } from "lucide-react"; +import Header from "@/components/Header"; +import Footer from "@/components/Footer"; +import { toast } from "sonner"; + +export default function AboutPage() { + const values = [ + { icon: Heart, title: "Compassion", desc: "We lead with empathy in every program we create and every community we serve." }, + { icon: Shield, title: "Transparency", desc: "95% of all funds go directly to programs. We publish full financial reports annually." }, + { icon: Users, title: "Empowerment", desc: "We build local capacity so communities can sustain progress long after we leave." }, + { icon: Handshake, title: "Partnership", desc: "We collaborate with local leaders, governments, and organizations for lasting impact." }, + ]; + + const team = [ + { name: "Dr. Elena Vasquez", role: "Executive Director", bio: "Former UNICEF advisor with 20 years of experience in international development and community health programs." }, + { name: "James Okafor", role: "Director of Programs", bio: "Led water infrastructure projects across 15 countries. Passionate about local ownership and sustainability." }, + { name: "Dr. Mei Chen", role: "Chief Impact Officer", bio: "Data scientist turned humanitarian. Develops rigorous metrics to measure and improve program effectiveness." }, + { name: "Sarah Lindberg", role: "Director of Development", bio: "Award-winning fundraiser who has secured over $50M in grants and partnerships for global health initiatives." }, + ]; + + const milestones = [ + { year: "2010", title: "Founded", desc: "Green Horizons Foundation established with a mission to provide clean water access in rural Ghana." }, + { year: "2014", title: "Education Initiative Launched", desc: "Expanded to education programs, building 50 schools and training over 500 teachers across West Africa." }, + { year: "2019", title: "Healthcare Expansion", desc: "Launched mobile healthcare clinics serving 200,000+ patients annually across three continents." }, + { year: "2025", title: "2.5 Million Lives Changed", desc: "Reached the milestone of 2.5 million lives directly impacted through water, education, and health programs." }, + ]; + + return ( +
+
+ + {/* ── Hero ── */} +
+
+

About Us

+

Our Story of Hope and Action

+

For over a decade, we have been working alongside communities to create sustainable solutions to poverty, inequality, and environmental challenges.

+
+
+ + {/* ── Mission & Vision ── */} +
+
+
+
+
+
+ +
+

Our Mission

+
+

To empower underserved communities by providing access to clean water, quality education, and essential healthcare through sustainable, community-driven programs that create lasting change.

+
+
+
+
+ +
+

Our Vision

+
+

A world where every person has the opportunity to thrive, where no community is left behind, and where sustainable development lifts entire regions out of poverty.

+
+
+
+
+ + {/* ── Values ── */} +
+
+
+ +

Our Core Values

+
+
+ {values.map((v, i) => ( + + +
+ +
+

{v.title}

+

{v.desc}

+
+
+ ))} +
+
+
+ + {/* ── Leadership Team ── */} +
+
+
+

Leadership

+

Meet Our Team

+
+
+ {team.map((t, i) => ( + + +
+ {t.name.charAt(0)} +
+

{t.name}

+

{t.role}

+

{t.bio}

+
+ + +
+
+
+ ))} +
+
+
+ + {/* ── Timeline ── */} +
+
+
+

Our Journey

+

Key Milestones

+
+
+ {milestones.map((m, i) => ( +
+
+
{m.year}
+ {i < milestones.length - 1 &&
} +
+
+

{m.title}

+

{m.desc}

+
+
+ ))} +
+
+
+ + {/* ── Annual Report CTA ── */} +
+
+

Annual Report

+

Read our latest annual report to see how your support is making an impact around the world.

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