// Home page const HomePage = ({ onNav, heroVariant }) => { React.useEffect(() => { if (window.lucide) lucide.createIcons(); }); const renderHero = () => { if (heroVariant === 'overlay') { return (
Soul Center rendering

Transforming lives through opportunity & inclusion.

The Soul Center will house innovative programs for adults with special needs — creative expression, vocational training, community service, and meaningful employment.

); } if (heroVariant === 'split') { return (

Transforming lives through opportunity & inclusion.

The Soul Center will house innovative programs for adults with special needs — creative expression, vocational training, community service, and meaningful employment.

Soul Center rendering
); } // default: stacked return (

Transforming lives through opportunity & inclusion.

The Soul Center will house innovative programs for adults with special needs — creative expression, vocational training, community service, and meaningful employment in a nurturing, inclusive environment.

Soul Center rendering
Architectural rendering · 16 Microlab Road, Livingston NJ
); }; return (
{renderHero()} {/* Stats band */}
35,000+
Annual participants at LifeTown
1,500
Teen & adult volunteers
6.5
Acre unified campus
9
New program spaces
The Vision

Why, what, and where.

The building next to LifeTown presents an extraordinary opportunity to seamlessly expand programs that change lives.

Why

Adults need us, too.

Many adults with special needs face challenges and isolation after youth programs end. Friendship Circle has responded with adult-focused initiatives met with overwhelming demand — underscoring the urgent need for expanded support.

What

Innovative programs under one roof.

Soul Space, Soul Café, Soul Studio, Job Studio, and the Mitzvah Center — opportunities for creative expression, vocational training, community service, and meaningful employment.

Where

Right next to LifeTown.

The building next to LifeTown creates a unified 6.5-acre campus dedicated to inclusion, opportunity, and community — ensuring ongoing support for individuals and families.

{/* Spaces teaser */}
Programs

A place for every soul.

Nine thoughtfully designed spaces, each built around purpose, dignity, and belonging.

{SC_SPACES.slice(0, 6).map((s, i) => (
onNav('spaces')}>
{s.photo ? {s.name} :
[ {s.name} photo ]
}
{s.category}

{s.name}

{s.description}

Learn more
))}
{/* CTA */}
); }; window.HomePage = HomePage;