/* global React, Photo, Reveal, Icon */ const { useState: useStateRent } = React; function PageRentals({ go, toast }) { const [form, setForm] = useStateRent({ name: '', email: '', phone: '', date: '', type: '', guests: '', location: '', message: '' }); const upd = (k) => (e) => setForm({ ...form, [k]: e.target.value }); const submit = (e) => { e.preventDefault(); if (!form.name || !form.email || !form.date) { toast('Please fill in name, email, and date.'); return; } toast(`Inquiry received. We'll reply to ${form.email} within 24 hours.`); setForm({ name: '', email: '', phone: '', date: '', type: '', guests: '', location: '', message: '' }); }; return (
{/* Hero */}
Simulator Rentals

Bring the game to you.

Professional golf simulator setup at your event. Corporate, private, or anything in between.

Submit an Inquiry
{/* How it works */}
How it works

Three steps. One memorable night.

{[ ['01', 'Tell us about your event', 'Date, location, vibe, guest count. We handle the rest.'], ['02', 'We set up, you play', 'Full installation, on-site staff, and golf equipment are provided.'], ['03', 'Everyone leaves a golfer', 'First-timers to pros — every guest takes a swing.'], ].map(([n, t, b], i) => (
{n}

{t}

{b}

))}
{/* Event types */}
Where we show up

Every kind of gathering.

{[ ['Corporate Events', 'Offsites, client dinners, team nights.', 'assets/rentals-corporate.png', 'Corporate rooftop event with 8tee simulator'], ['Birthday Parties', 'Milestone moments, built around play.', 'assets/rentals-birthday.png', 'Birthday party with 8tee simulator and string lights'], ['Brand Activations', 'Launches, pop-ups, press events.', 'assets/rentals-brand.png', '8tee simulator pop-up brand activation'], ['Private Parties', 'Holidays, anniversaries, just because.', 'assets/rentals-family.png', '8tee simulator at family backyard gathering'], ].map(([t, d, src, alt], i) => (

{t}

{d}

))}
{/* Inquiry form */}
Inquiry

Ready to book?

Tell us a little about your event — we'll come back with a proposal within 24 hours.

{/* Pricing column */}
Starting at
$800 $1000
4-hour rental
Includes
    {[ '12×12×10 golf simulator tent', 'Golf club equipment', 'Staff on-site to manage equipment', 'Setup and breakdown', ].map((item, i) => (
  • {item}
  • ))}
Additional hours + travel quoted per event.
{/* Form column */}