// About page for Little Bloom Photo Studio function AboutPage({ setPage }) { return (
); } function AboutHero() { return (
About the studio

A warm,
natural light
studio.

Thoughtfully designed for photographers, creatives, and growing families — a cozy 500 sq ft space where creativity can bloom naturally.

Little Bloom Photo Studio interior
Little Bloom
Pleasant Grove, Utah
); } function AboutStory() { return (
Little Bloom Photo Studio
Welcome

Where creativity blooms.

Welcome to The Little Bloom Photo Studio — a warm, natural light space thoughtfully designed for photographers, creatives, and growing families.

Our cozy 500 sq ft studio was created to feel inviting, versatile, and easy to create in. With 7 beautiful natural light windows — including 5 large southwest-facing windows — the studio fills with dreamy light throughout the day, making it perfect for maternity, newborn, family, branding, and motherhood sessions.

To keep the space functional in every season, we also provide additional drapes to help soften or control harsh lighting when needed, giving you flexibility no matter the time of day.

Whether you're documenting tiny newborn details, playful family moments, or building your creative business — The Little Bloom Photo Studio was made to be a space where creativity can bloom naturally.

); } function AboutFeatures() { const features = [ { n: 'I.', t: '500 sq ft shooting space', d: "Cozy yet versatile — enough room for any style of session, from intimate newborn work to full family portraits." }, { n: 'II.', t: '7 natural light windows', d: "Including 5 large southwest-facing windows that fill the studio with dreamy, flattering light throughout the day." }, { n: 'III.', t: 'Light control drapes', d: "Extra drapes to soften or block harsh light when needed — giving you beautiful results in any season or time of day." }, { n: 'IV.', t: 'Curated furniture & props', d: "A clean, minimal aesthetic designed to photograph beautifully, with carefully selected furniture and props for every session style." }, ]; return (
What's included

Everything you need to create.

{features.map((v, i) => (
{v.n}

{v.t}

{v.d}

))}
); } function AboutStudio({ setPage }) { return (
The space

Beautiful light. Beautiful space.

43 S 1300 W St Suite 43A
Pleasant Grove, UT 84062

The studio space Sofa area with macramé wall Studio pampas wall arrangement Natural window light with bassinet
); } function AboutFAQ({ setPage }) { const [open, setOpen] = React.useState(0); const faqs = [ { q: "How do I book the studio?", a: "You can book online anytime through our Booking & Memberships page. Choose your hours, select a date and time, and complete your reservation.", }, { q: "What's included in every rental?", a: "Every rental includes access to our curated furniture, props, and backdrops; the snack bar (one item per person); a private bathroom; and additional drapes for light control. The photographer is not included — this is a self-serve rental space.", }, { q: "How much does it cost to rent?", a: (

Pricing varies by session type and membership level. Visit our Booking & Memberships page for full details on single sessions, punch passes, and membership rates.

), }, { q: "Are pets allowed?", a: "No pets are allowed in the studio without written consent from the owners. Bringing a pet without permission results in a $250 fine.", }, { q: "What is your cancellation policy?", a: ( You may reschedule your appointment up to 48 hours before your session. No refunds are given for cancellations. If you go over your scheduled time, a $100 overage charge applies automatically. For full details, see our{' '} { setPage('terms'); window.scrollTo({ top: 0, behavior: 'instant' }); }} style={{ color: 'var(--lb-brown)', textDecoration: 'underline', cursor: 'pointer' }}>Terms & Conditions. ), }, ]; return (
Frequently asked

Anything else you'd like to know?

And if your question isn't here, reach out — we're happy to help.

{faqs.map((f, i) => (
{f.a}
))}
); } function AboutCTA({ setPage }) { return (

Ready to create in the best light?

Book your hours online — single sessions, punch passes, and memberships all available. We can't wait to see what you create.

); } window.AboutPage = AboutPage;