import { BentoCard } from '@/components/bento-card' import { Button } from '@/components/button' import { Container } from '@/components/container' import { Footer } from '@/components/footer' import { Gradient } from '@/components/gradient' import { Keyboard } from '@/components/keyboard' import { Link } from '@/components/link' import { LinkedAvatars } from '@/components/linked-avatars' import { LogoCloud } from '@/components/logo-cloud' import { LogoCluster } from '@/components/logo-cluster' import { LogoTimeline } from '@/components/logo-timeline' import { Map } from '@/components/map' import { Navbar } from '@/components/navbar' import { Screenshot } from '@/components/screenshot' import { Testimonials } from '@/components/testimonials' import { Heading, Subheading } from '@/components/text' import { ChevronRightIcon } from '@heroicons/react/16/solid' import type { Metadata } from 'next' import Portfolio from '@/components/portfolio' import { IndabaOs } from '@/components/indabaos' import FeaturedTestimonial from '@/components/featuredtestimonial' export const metadata: Metadata = { description: 'Indaba is the platform that adds an "Engage" button to the Internet, inviting meaningful participation and contribution.', } function Hero() { return (
Join the Indaba Community } />

The Platform for Purposeful Participation

Indaba is the platform that adds an "Engage" button to the Internet. While most platforms offer "Like," or "Comment," Indaba invites people to take responsibility, contribute meaningfully, and become part of the solution.

) } function FeatureSection() { return (
Deliver transformational experiences anywhere
) } function BentoSection() { return ( Features Empowering meaningful participation.
} fade={['bottom']} className="max-lg:rounded-t-4xl lg:col-span-3 lg:rounded-tl-4xl" /> } fade={['bottom']} className="lg:col-span-3 lg:rounded-tr-4xl" />
} className="lg:col-span-2 lg:rounded-bl-4xl" /> } className="lg:col-span-2" /> } className="max-lg:rounded-b-4xl lg:col-span-2 lg:rounded-br-4xl" />
) } const stats = [ { id: 1, name: 'Lessons delivered', value: '+4,000,000,000' }, { id: 2, name: 'Educational resources', value: '+90,000,000' }, { id: 3, name: 'Spent on infrastructure & content development', value: '+$60,000,000' }, ] function DarkBentoSection() { return (
{/* Left: Text Column */}
About Indaba A Movement to Reimagine Learning for All

Indaba is a social business on a mission to empower young people to be resilient, reach their full potential, and contribute to the common good. We’re building a global ecosystem for holistic learning — accessible online and offline, affordable to the many, and grounded in culture, care, and collaboration.

{/* Right: Stats Column */}
{stats.map((stat) => (
{stat.name}
{stat.value}
{stat.name && (
{stat.name}
)}
))}
) } import { CTA } from '@/components/cta' export default function Home() { return (
) }