My Dream Getaway Travel



import React, { useState } from "react";
export default function DreamGetawaysFullFunnel() {
const [submitted, setSubmitted] = useState(false);
return (
{/* HERO */}

Stop Dreaming. Start Living the Experience.

We plan, book, and manage your entire trip — saving you time, stress, and money.

Plan My Trip Now
{/* BENEFITS */}
{[ "Exclusive Travel Deals", "Done-For-You Planning", "Luxury for Less", "Worldwide Destinations", ].map((item, index) => (

{item}

))}
{/* TESTIMONIALS */}

What Clients Say

{[ "Best trip I've ever taken!", "Saved me hours and money.", "Everything was perfectly planned." ].map((text, i) => (

"{text}"

))}
{/* HOW IT WORKS */}

How It Works

{["Tell Us Your Trip", "We Plan Everything", "You Pack & Go"].map((step, i) => (

Step {i + 1}

{step}

))}
{/* FORM */}

Start Your Custom Getaway

{!submitted ? (
setSubmitted(true)} className="max-w-xl mx-auto grid gap-4" >
) : (
Thanks! We'll contact you shortly.
)}
{/* URGENCY */}

Limited Planning Spots Available

We only take a select number of clients to ensure quality service. Submit your request before spots fill.

{/* FOOTER */}
); } /* BASIC TEST CASES (manual checks) 1. Page renders without crashing 2. "Plan My Trip Now" scrolls to form 3. Form submission changes state to thank-you message 4. All inputs accept user data 5. Mobile responsiveness works (resize screen) */