// Terms & Conditions page for Little Bloom Photo Studio function TermsPage({ setPage }) { return (
); } function TermsHero() { return (
Studio Policies

Terms &
Conditions

Please read these guidelines carefully before your session. By booking the studio you agree to the following terms. We appreciate your care for the space — it allows us to keep it beautiful for everyone.

); } function TermsContent() { const terms = [ { n: '01', title: 'Respect the space', body: 'Please be respectful of the studio space, the props, and the property. Take care of the props, clean up after yourself, and be aware of your time. Do NOT use props on top of the cabinets, in the cabinets, or on the outside floor of the cabinets.', }, { n: '02', title: 'Be courteous with time', body: 'Please only enter the studio at your scheduled time and leave promptly so the next session can begin. If you go over your scheduled time, you will automatically be charged $100. You must allocate time within your rental to reset the studio EXACTLY as you found it — bed, blankets, pillows, and props returned to their original spots. Failure to reset will result in a $100 charge.', }, { n: '03', title: 'No glitter. No food on furniture.', body: 'GLITTER IS NOT ALLOWED in the studio. No food on the rug or couch.', }, { n: '04', title: 'Parking', body: 'The studio has limited parking spaces directly in front. If additional spots are needed, please park on the street.', }, { n: '05', title: 'Cancellations & rescheduling', body: 'You may reschedule your appointment up until 48 hours prior. No refunds will be given for cancellations. The photographer is not included in your rental.', }, { n: '06', title: 'Cleanliness & stains', body: 'Please remove dirty shoes upon entering the studio — no shoes on the rug, daybed, or couch areas unless clean. Be mindful of body oils, lotions, tanner, and makeup. If stains occur, please notify the owners as quickly as possible. A $50 fee applies for stains left on the bed or couch.', }, { n: '07', title: 'Damages & cleaning supplies', body: 'Please inform the owners of any damages or soiled items requiring attention. Cleaning supplies are in the shower by the bathroom.', }, { n: '08', title: 'Diapers', body: 'Diapers must be taken with you or the trash must be taken out. The dumpster is located on the right side of the studio down the sidewalk.', }, { n: '09', title: 'Snack bar', body: 'Please be courteous with the snack bar — 1 item per person. Top drawer of the snack bar: 1 prize per child ON THE WAY OUT. No open suckers.', }, { n: '10', title: 'Owner\'s cabinets — hands off', body: 'The white cabinets at the back of the studio and by the fridge are owner\'s cabinets. Do not use the props, wraps, baskets, or any items in the cabinets, on top of the cabinets, on the floor next to the cabinets, or the client closet gowns. Items available for use are listed on the Instagram highlight. Using owner\'s items will result in a $200 charge — even if discovered after your session. You will also be banned from the studio. DO NOT move the large pampas arrangement or curtains on the main wall above the daybed — it is extremely delicate and expensive to replace. Damaging the pampas arrangement will result in a $500+ charge.', }, { n: '11', title: 'Locking up', body: 'To unlock the door, punch in the code. The door requires a firm push to open and will automatically lock after 15 seconds — please verify it is locked before you leave. Failure to lock the door, turn off the lights, or put the shades down will result in a $50 charge.', }, { n: '12', title: 'AC / Heat unit', body: 'The AC/Heat unit can be turned on and off using the remote pointed at the right side of the unit. Do not change the schedule. If using heat, ensure the drapes are out of the way and turn it OFF when you leave. Failure to turn off the unit will result in a $100 charge.', }, { n: '13', title: 'Weekend bookings', body: 'Weekends are extremely limited. Please book during the week when possible. If a weekend is necessary, reach out to see if a specific time and date is available.', }, { n: '14', title: 'No pets', body: 'NO PETS. Bringing any pet without written consent from the owners will result in a $250 fine.', }, ]; return (
{terms.map((t, i) => (
{t.n}

{t.title}

{t.body}

))}

Summary of fees

{[ ['Overtime', '$100'], ['Studio reset failure', '$100'], ['Stains on bed/couch', '$50'], ['Forgot to lock/lights/shades', '$50'], ['Using owner\'s items', '$200 + ban'], ['Pampas damage', '$500+'], ['Unauthorized pet', '$250'], ['AC/heat left on', '$100'], ].map(([label, fee]) => (
{label} {fee}
))}
); } function TermsCTA({ setPage }) { return (

Ready to book the studio?

By booking you agree to these terms. We take great care of the space and trust you will too — it's what keeps it beautiful for everyone.

); } window.TermsPage = TermsPage;