Find Your Vegas Vibe

Find Your Vegas Vibe

Discover which Las Vegas neighborhood matches your lifestyle.

1. What sounds like your perfect Vegas morning?
2. What type of home view fits your lifestyle?
3. What atmosphere do you prefer?
4. What matters most in your ideal community?
Get Your Vegas Results
// SEND FORM const form = document.getElementById("vibeForm"); const formData = new FormData(form); try { const response = await fetch(form.action, { method: "POST", body: formData, headers: { "Accept": "application/json" } }); if (response.ok) { console.log( "Email sent successfully" ); } else { console.error( "Form submission failed" ); } } catch (error) { console.error( "Error:", error ); } });