The power has always been in getting in the room — and you just did it. Your ticket is confirmed. Four steps and you're set.
1011 West Holmes Avenue, Mesa, AZ 85210
Just off US 60 — 12 miles from Sky Harbor Airport — with an outdoor pool and hot tub, on-site restaurant and bar, fitness center, and a warm chocolate chip cookie waiting at check‑in. Stay where the event is happening: no commute, no parking scramble, and the hallway conversations are half the value of the weekend.
Prefer to call? +1 480‑833‑5555 — mention group code 917
“The two ladies at the front desk made my day! I will definitely come back and stay here again for the amazing experience and unbelievable customer service. I don’t think I’ve ever felt so welcome at a hotel before. I wish I could live here.”
“The front desk staff were professional and friendly in every interaction I had with them. Asa reached out shortly after check-in to verify that everything was up to par with my room, then reached out again the second night to ask how things were going.”
“The staff is on the money — friendly, courteous & diligent. Nice pool area and functioning hot tub. The breakfast has blown me away — better than any diner or fancy brunch spot. Eggs cooked perfectly every day, with perfectly crispy bacon.”
Connect your Supabase project so held seats are saved and shared with everyone viewing this page. Without a connection, the tool runs in demo mode (selections reset on refresh).
create table if not exists public.seats ( id integer primary key, label text not null, name text, claimed_at timestamptz ); insert into public.seats (id, label) select i, 'Seat ' || i from generate_series(1, 40) as i on conflict (id) do nothing; alter table public.seats enable row level security; create policy "Anyone can view seats" on public.seats for select using (true); create policy "Anyone can claim or release seats" on public.seats for update using (true) with check (true);