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 ( +
About Us
+For over a decade, we have been working alongside communities to create sustainable solutions to poverty, inequality, and environmental challenges.
+To empower underserved communities by providing access to clean water, quality education, and essential healthcare through sustainable, community-driven programs that create lasting change.
+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.
+{v.desc}
+Our Journey
+{m.desc}
+Read our latest annual report to see how your support is making an impact around the world.
+ +