/* Willow Creek — inner content screens: About, Programs, The Home, FAQ. */ const { Icon: IIcon, useParallax: IuseParallax, Reveal: IReveal, Photo: IPhoto, Container: IContainer, Eyebrow: IEyebrow } = window.WC; function PageHero({ eyebrow, title, subtitle, tone = "canopy" }) { const ref = IuseParallax(); const grads = { canopy: "var(--grad-canopy)", creek: "var(--grad-creek)", clay: "var(--grad-clay)" }; return (
{eyebrow}

{title}

{subtitle &&

{subtitle}

}
); } /* ---------- ABOUT ---------- */ function AboutScreen({ go }) { const { Card, Button, Avatar } = window.WillowCreekDesignSystem_90378c; const values = [ ["sprout", "Dignity first", "You are a person in recovery, not a case number. We speak plainly and treat you like an adult."], ["scale", "Honest structure", "Clear rules, applied fairly. Structure is a form of care, not control."], ["users-round", "Real community", "Small houses where people know your name and notice when you're struggling."], ["compass", "Built for after", "Everything points toward the day you leave stronger than you arrived."], ]; const team = [["Rebecca Hale", "Founder & Director"], ["James Ortiz", "House Manager, Creekside"], ["Nadia Brooks", "Recovery Coach"], ["Sam Whitfield", "Alumni Coordinator"]]; return ( <>
Why we're here

A home between treatment and the rest of your life.

Leaving treatment can feel like stepping off a cliff. Willow Creek is the bridge — a structured, sober home where you can practice living again with support close by.

Our founder spent her own first year of recovery in a house like this one. We built Willow Creek to be the version she wished she'd had: calm, honest, and genuinely warm.

What we stand for

Four things we won't compromise on.

{values.map(([ic, t, d], i) => (

{t}

{d}

))}
The house team

People who actually pick up the phone.

{team.map(([n, r], i) => (
{n}
{r}
))}
); } /* ---------- PROGRAMS ---------- */ function ProgramsScreen({ go }) { const { Tabs, Card, Badge, Button } = window.WillowCreekDesignSystem_90378c; const phase = (title, desc, points) => (

{title}

{desc}

); const schedule = [ ["Morning", "Wake, chores, breakfast together", "check-in with house manager"], ["Midday", "Work, school, or job search", "recovery coaching by appointment"], ["Evening", "Shared dinner", "12-step or SMART meeting (on-site or nearby)"], ["Weekly", "3× house meetings", "1:1 coaching · supportive drug testing"], ]; const included = [ ["bed", "Furnished bed & board"], ["utensils", "Shared, stocked kitchen"], ["car", "Rides to meetings & appts"], ["clipboard-list", "Individual recovery plan"], ["users", "Peer & alumni community"], ["phone-call", "24/7 house support line"], ]; return ( <>
Structured living Staffed 24/7 Abstinence-based
A day at Willow Creek

Predictable rhythm, room to live.

{schedule.map(([when, a, b], i) => (
{when} {a} · {b}
))}
What's included

One weekly rate covers it.

{included.map(([ic, t], i) => (
{t}
))}
); } /* ---------- THE HOME ---------- */ function HomeTourScreen({ go }) { const { Button, Badge } = window.WillowCreekDesignSystem_90378c; const gallery = [ ["dawn", "Living room", "sofa", "1 / 1"], ["forest", "The backyard & garden", "trees", "1 / 1"], ["room", "Shared bedroom", "bed", "1 / 1"], ["creek", "Kitchen & shared meals", "utensils", "1 / 1"], ["sage", "Quiet reading nook", "book-open", "1 / 1"], ["dawn", "Front porch", "armchair", "1 / 1"], ]; const amenities = ["Furnished private & shared rooms", "Fully stocked shared kitchen", "Laundry on site", "Fast Wi-Fi & study space", "Fenced backyard & garden", "Off-street parking", "Near transit & meetings", "Weekly housekeeping of common areas"]; return ( <>
{gallery.map(([tone, label, icon, ratio], i) => ( ))}
Comforts of home

The details that make it livable.

{amenities.map((a, i) => (
{a}
))}
); } /* ---------- FAQ ---------- */ function FaqScreen({ go }) { const { Accordion, Alert, Button } = window.WillowCreekDesignSystem_90378c; const faqs = [ { q: "How long can I stay?", a: "As long as you're working your program and following house agreements. Most residents stay 90 days or more — the milestone research links to lasting recovery. There's no artificial time limit on getting well." }, { q: "Who is Willow Creek for?", a: "Adults in early recovery from substance use who want a structured, sober, supportive place to rebuild — often after detox, residential treatment, or incarceration. We offer a high level of on-site support." }, { q: "What are the house rules?", a: "The essentials: complete abstinence, respect for housemates, participation in meetings and chores, curfew (which relaxes by phase), and honesty about your recovery. Rules exist to keep everyone safe — they're applied consistently and fairly." }, { q: "Is there drug testing?", a: "Yes — regular, supportive testing is part of a structured sober home. It's not a 'gotcha'; it protects the whole house and helps you stay accountable to yourself." }, { q: "Can my family stay involved?", a: "Absolutely, with your consent. Recovery is stronger with support, and we keep families reasonably informed and invited into the process where it's healthy to do so." }, { q: "What does it cost?", a: "One transparent weekly rate covers your furnished bed, shared kitchen, utilities, transportation to meetings, and coaching. Reach out and we'll walk you through current rates and any assistance you may qualify for." }, ]; return ( <>
} style={{ marginBottom: 28 }}> You don't have to wait for an application. Call or text 988 for the Suicide & Crisis Lifeline, or call us directly at (940) 555-0142. Free and confidential, any time.

Still have a question?

); } Object.assign(window.WC, { AboutScreen, ProgramsScreen, HomeTourScreen, FaqScreen });