import { AnimatedNumber } from '@/components/animated-number' import { Button } from '@/components/button' import { Container } from '@/components/container' import { Footer } from '@/components/footer' import { GradientLight } from '@/components/gradient' import { Navbar } from '@/components/navbar' import { Heading, Lead, Subheading } from '@/components/text' import type { Metadata } from 'next' import Ecosystem from '@/components/ecosystem' import { RocketLaunchIcon } from '@heroicons/react/20/solid' import Portfolio from '@/components/portfolio' import { Testimonials } from '@/components/testimonials' import ProjectCard from '@/components/projectcards' export const metadata: Metadata = { title: 'Projects', description: 'Indaba is a Social Business with a mission to empower young people to be resilient, develop their full potential and serve the common good by developing a better educational system powered by world-class technological, collaborative and educational solutions accessible online and offline, affordable to the many.', } function Header() { return (
Deliver Transformational Learning – Anywhere. From early childhood to vocational skills and lifelong learning, Indaba brings transformative education directly to the communities that need it most.
) } const features = [ { name: 'Reached 8,000+ young learners', description: "Indaba's ECD initiatives have already empowered thousands of children across underserved communities in Africa and Latin America, offering early access to essential learning tools.", icon: RocketLaunchIcon, }, { name: ' Localized curriculum across 4 regions.', description: 'Each program is co-developed with local educators and elders, ensuring cultural alignment and deep community ownership.', icon: RocketLaunchIcon, }, { name: '99.9% parent satisfaction rate.', description: 'Parents consistently report increased confidence, stronger engagement with their children, and a desire to expand the program in their communities.', icon: RocketLaunchIcon, }, ] function Overview() { return (

500 million children globally lack access to foundational education during the most critical years of brain development. Indaba addresses this urgent need by delivering culturally grounded Early Childhood Development (ECD) programs.

Through a blend of online and offline tools, local storytelling, and community hubs, we equip parents and caregivers to nurture children’s cognitive, emotional, and social growth — starting from birth.

{features.map((feature) => (
{' '}
{feature.description}
))}
Product screenshot
) } function Person({ name, description, img, }: { name: string description: string img: string }) { return (
  • {name}

    {description}

  • ) } import { CompanyTestimonial } from '@/components/companytestimonial' import { CTA } from '@/components/cta' function Team() { return ( Meet the team Founded by educators, activists, and systems changers. Indaba is founded by community leaders and backed by investors who believe in the power of meaningful participation.

    Years ago, while working on separate community projects across Africa and beyond, our founding team kept encountering the same problem: fragmented systems, siloed resources, and a lack of tools built for those doing the real work on the ground. Frustrated but inspired, they came together to design a new kind of platform — one that centers people, culture, and purpose.

    Today, Indaba empowers communities through a unified ecosystem that supports education, collaboration, and regenerative action. From early childhood learning to vocational training, over 30,000 people across the globe engage with Indaba to reimagine what’s possible — and to build it, together.

    Team Members An experienced and purpose-driven team
    ) } function Investors() { return ( Board Members Benefit from experts of various ventures Backed by top-tier board members, mentors and industry leaders who bring deep insights, networks, and execution power.
    ) } export default function Company() { return (
    ) }