const { KG, COL, BRAND, ICONS, UlcDiagram, ButtonSecondaryDark, ButtonTertiaryLight, KgFooter, Reveal, sp, SwipeRail } = window; const ULC_BODY = [ "Kgotla uses the Universal Life Cycle (ULC), a dialogue-based methodology for exploring complex challenges together. Instead of jumping to quick solutions, groups move through phases that deepen understanding and reveal new insights.", "Through circles, storytelling, and guided dialogue, participants connect different perspectives and develop shared direction. The result is clarity, stronger relationships, and decisions people are ready to support and implement.", ]; function UlcSection({ style }) { return (
HOW WE WORK

Game changing tools for turbulent times

{ULC_BODY.map((t, i) =>

{t}

)}
); } function QuoteBand({ style }) { return (

“Give us twenty days within a three month period, and we’ll help you make a fundamental shift in your organisation or community.”

); } const BOOKS = [ { image: "assets/img/book-lekgotla.jpg", title: "Le Kgotla (Brown book cover)" }, { image: "assets/img/book-riotinto.png", title: "RioTinto Case Study Book" }, { image: "assets/img/book-yachting-sm.jpg", title: "The Yachting Matters" }, ]; function BooksSection({ style }) { return (
Books and Publications {BOOKS.map((b, i) => { const href = window.KGBOOKHREF[b.title] || window.KGLINKS.books; return (
{b.title} Learn more ); })}
); } function NewsletterSection({ style }) { const [sent, setSent] = React.useState(false); return (

Stay inspired

Subscribe to stories, tips, and insights from leaders who've walked the path you're on.

{sent ? (

Thank you — please check your inbox to confirm.

) : (
{ e.preventDefault(); setSent(true); }}> Join us
)}

Hundreds of global leaders already with us • Unsubscribe anytime

); } function SiteFooter({ style }) { return ; } Object.assign(window, { UlcSection, QuoteBand, BooksSection, NewsletterSection, SiteFooter });