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) => (
))}
{/* TESTIMONIALS */}
What Clients Say
{[
"Best trip I've ever taken!",
"Saved me hours and money.",
"Everything was perfectly planned."
].map((text, i) => (
))}
{/* HOW IT WORKS */}
How It Works
{["Tell Us Your Trip", "We Plan Everything", "You Pack & Go"].map((step, i) => (
))}
{/* FORM */}
{/* 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)
*/