/* ============================================================= * Programs pages: Be A Man, Nurturing Bonds, Mobile Kanaabe * Content per Fathers Arise Website Design Brief * ============================================================= */ const BEAMAN_FRAMEWORK = [ { letter: "B", word: "Bold in Character", desc: "A real man does not hide from hard things. He faces them. Boldness is not aggression — it is the quiet courage to do what needs to be done even when no one is watching." }, { letter: "E", word: "Emotionally Intelligent", desc: "A man who cannot name what he feels will be controlled by what he feels. Emotional intelligence is the superpower that separates a man who leads from a man who reacts." }, { letter: "A", word: "Accountable to Others", desc: "No man was made to walk alone. A man who has no one to answer to is a man who is dangerous to himself and everyone around him." }, { letter: "M", word: "Mentored and Mentoring", desc: "The greatest act of leadership is not what you build — it is who you raise. One mature man shapes younger men. Those men shape others. The cycle of absence is replaced by a cycle of presence." }, { letter: "A", word: "Anchored in Faith", desc: "A man without a foundation will be shaken by every storm. We anchor young men in a living relationship with God that gives them identity, purpose, and direction." }, { letter: "N", word: "Nurturing the Next Generation", desc: "The ultimate test of a man is not what he achieves — it is what he leaves behind. True greatness is a passionate love for God demonstrated in an unquenchable love for others." }, ]; const BEAMAN_SESSIONS = [ { n: "1", title: "Bold in Character — The Strength Decision", desc: "What makes a man is not how much strength he has but what he does with his strength." }, { n: "2", title: "Emotionally Intelligent — The Man Behind the Mask", desc: "Tearing apart the lie that real men do not feel. Teaching emotional awareness as a leadership skill." }, { n: "3", title: "Accountable to Others — The Band of Brothers", desc: "Establishing accountability partnerships. A friend tells you what you want to hear; a brother tells you what you need to hear." }, { n: "4", title: "Mentored and Mentoring — The Transfer", desc: "No great man was self-made. Introducing the mentorship model and the challenge to both receive and give." }, { n: "5", title: "Anchored in Faith — The Foundation", desc: "Challenging the false gods of popularity, money, and image. Presenting the invitation to build on something bigger." }, { n: "6", title: "Nurturing the Next Generation — The Legacy", desc: "Writing a Legacy Letter to their future children. The culmination of the Be A Man identity journey." }, ]; const BEYOND_CLASSROOM = [ { title: "Retreats & Camps", img: "uploads/FATHERS ARISE-84.jpg", desc: "2–3 day intensive experiences that take young men out of their environment and into a space where transformation can happen. Advanced curriculum, outdoor challenges, personal storytelling circles, and closing declarations." }, { title: "Prison Outreach", img: "uploads/FATHERS ARISE MEETING-79.jpg", desc: "The young men behind bars are not lost. They are waiting for someone to see them. Same B-E-A-M-A-N framework, adapted for men living with consequences of choices made without guidance." }, { title: "Sports & Recreation", img: "uploads/Father's Arise Football tournament-event section.jpg", desc: "A football field is a classroom. Every sports event is structured with three elements: play, pause, and purpose." }, { title: "Annual Gathering", img: "uploads/FATHERS ARISE MEETING-49 (1).jpg", desc: "Every chapter comes together once a year for The Gathering — keynote speakers, chapter awards, Legacy Letter readings, and the invitation to Christ." }, ]; function BeAManPage() { const [open, setOpen] = useState(0); // Phase 3.7: editable site content const [cms, setCms] = useState({}); useEffect(() => { if (window.cms && typeof window.cms.getSiteContent === "function") { window.cms.getSiteContent("beaman").then(setCms); } }, []); const hero = cms.hero || {}; const heroImage = hero.image || "uploads/FA-09310.jpg"; const heroTitle = hero.headline || "Be A Man"; const heroSub = hero.subhead || "Raising a generation of men who know who they are before the world tells them who to be."; const heroAlign = hero.align || "left"; const heroAlignClass = heroAlign === "center" ? "text-center" : heroAlign === "right" ? "text-right" : "text-left"; return (
{/* Hero — Sky Blue overlay */}
Pillar One

{heroTitle}

{heroSub}

{/* What Be A Man Is */}

Be A Man is more than a program. It is an identity declaration. It is the moment when a young man stops letting the world define him and starts defining himself. We go where the young men are — into schools, universities, prisons, and communities where boys are becoming men with no one to show them how. And we say six words that change everything.

{/* B-E-A-M-A-N Framework */}

Six words. Six commitments. One man.

{BEAMAN_FRAMEWORK.map((v, i) => (
{v.letter}

{v.word}

{v.desc}

))}
{/* How It Works */}
    {[ { n: "01", title: "We Enter the School", desc: "We partner with secondary schools and universities, presenting the Be A Man vision to administration and students." }, { n: "02", title: "We Launch a Chapter", desc: "Interested students register, Chapter Captains are selected, and a weekly or bi-weekly meeting rhythm begins using our 6-session B-E-A-M-A-N curriculum." }, { n: "03", title: "We Build Men", desc: "Through sessions, retreats, sports, mentoring, and accountability, young men develop character, identity, and purpose." }, ].map((s) => (
  1. {s.n}

    {s.title}

    {s.desc}

  2. ))}
{/* 6-Session Curriculum */}
{BEAMAN_SESSIONS.map((s, i) => (
{open === i &&
{s.desc}
}
))}
{/* Beyond the Classroom */}
{BEYOND_CLASSROOM.map((b, i) => (
{b.title}

{b.title}

{b.desc}

))}
{/* CTA Block */}

Bring Be A Man to Your School

If you are a headteacher, chaplain, or school administrator who wants to bring positive masculinity into your institution, we want to hear from you.

); } /* ===== Nurturing Bonds ===== */ const SEVEN_PROGRAMS = [ { title: "Fathers Foundations Program", audience: "For fathers who grew up without fathers.", desc: "The entry point. Addresses the root of fatherlessness itself — healing the absent father wound and reframing identity." }, { title: "Emotional Presence & Connection Lab", audience: "For busy, working fathers.", desc: "Training fathers to be emotionally present, not just financially present. Micro-moment design, active listening, presence audits." }, { title: "Work-Life-Faith Balance Program", audience: "For professionals and pastors.", desc: "Shifting from being busy to being intentional. Boundary-setting, family-first rhythms, redefining success beyond provision." }, { title: "Faith-at-Home Discipleship", audience: "For Christian fathers.", desc: "Equipping fathers as spiritual leaders at home — modelling faith in the kitchen, at the table, in the car." }, { title: "Mentorship & Role Model Network", audience: "For young and at-risk fathers.", desc: "One mature father mentors two to three younger fathers. Replacing absence with access. Transfer of values across generations." }, { title: "Crisis & Complex Fathering Support", audience: "For fathers in difficult realities.", desc: "Divorce, special needs, blended families, incarceration. Your situation may be complicated, but your fatherhood is not disqualified." }, { title: "Legacy & Community Impact", audience: "For senior fathers and leaders.", desc: "Legacy planning, community fatherhood forums, advocacy campaigns. Fathers influencing beyond their homes." }, ]; function NurturingBondsPage() { // Phase 3.7: editable site content const [cms, setCms] = useState({}); useEffect(() => { if (window.cms && typeof window.cms.getSiteContent === "function") { window.cms.getSiteContent("nurturing").then(setCms); } }, []); const hero = cms.hero || {}; const heroImage = hero.image || "uploads/TRG_Father_sBreakfast125.jpg"; const heroTitle = hero.headline || "Nurturing Bonds"; const heroAlign = hero.align || "left"; const heroAlignClass = heroAlign === "center" ? "text-center" : heroAlign === "right" ? "text-right" : "text-left"; return (
{/* Hero — Gold overlay */}
Pillar Two

{heroTitle}

Healing the wounds that fathers carry, so they stop passing them to their children.

{/* What it is */}

Nurturing Bonds meets the man after the wound has already done its work. These are men who are already fathers — some present, some absent, some trying and failing, some drowning in silence and shame.

We do not shame these men. We walk beside them and say: You are not your past. You can become the father your children need — but you cannot do it alone.

A man cannot give what he does not have. Nurturing Bonds gives him what he never received.

{/* The Forge */}
The Signature Model

The Forge

A Forge is a small group of 8–15 fathers who meet consistently over a 12-week cycle. The name is intentional: a forge is where raw metal is heated, hammered, and shaped into something strong and useful.

He comes in raw. He comes out refined.

{["12 sessions", "Trained leader", "Structured curriculum", "Storytelling circles", "Accountability checks", "Personal challenges", "Confidentiality covenant", "Legacy declarations"].map((it) => (
{it}
))}
Forge meeting
{/* 7 Flagship Programs */}
{SEVEN_PROGRAMS.map((p, i) => (
{String(i + 1).padStart(2, "0")}

{p.title}

{p.audience}

{p.desc}

))}
{/* Register CTA */}
Register as a Father

Join the Forge

Whether you are a first-time father or a grandfather — there is a seat for you at the Forge. Register and we will connect you with a group near you.

Or WhatsApp Us Directly
); } /* ===== Mobile Kanaabe ===== */ function MobileKanaabePage() { // Phase 3.7: editable site content const [cms, setCms] = useState({}); useEffect(() => { if (window.cms && typeof window.cms.getSiteContent === "function") { window.cms.getSiteContent("mobile").then(setCms); } }, []); const hero = cms.hero || {}; const heroImage = hero.image || "uploads/mobile kanabe card (2).png"; const heroTitle = hero.headline || "Mobile Kanaabe"; const heroSub = hero.subhead || "Economic empowerment for young men who need more than words — they need work."; const heroAlign = hero.align || "left"; const heroAlignClass = heroAlign === "center" ? "text-center" : heroAlign === "right" ? "text-right" : "text-left"; return (
Economic Empowerment

{heroTitle}

{heroSub}

The Problem

A man who cannot provide is a man who often disappears. We break that cycle by linking character development with economic capacity. Mobile Kanaabe gives young men practical income-generating skills — starting with car wash services, skills training, and micro-enterprise.

{[ { title: "Car Wash Enterprise", desc: "Car wash services managed and operated by trained young men." }, { title: "Skills Training", desc: "Practical skills workshops linked to the B-E-A-M-A-N framework." }, { title: "Micro-Enterprise Support", desc: "Guidance on starting and managing small businesses." }, ].map((c, i) => (
{String(i + 1).padStart(2, "0")}

{c.title}

{c.desc}

))}

Support Mobile Kanaabe or Hire Our Team

); } window.BeAManPage = BeAManPage; window.NurturingBondsPage = NurturingBondsPage; window.MobileKanaabePage = MobileKanaabePage;