import React, { useMemo, useState, useEffect } from "react"; import { motion } from "framer-motion"; import { Plane, Calendar as CalendarIcon, Users, IndianRupee, Bike, Car, Bus, Train, PlaneTakeoff, MapPin, Hotel, UtensilsCrossed, Wallet, Cog, Search, CreditCard, CheckCircle, } from "lucide-react"; /** * SMART TRAVEL PLANNER – One Page App * ----------------------------------------------------------- * - Fully responsive (mobile-first), clean + subtle 3D (neumorphic) look * - Form: Destination, Start/End date (with native calendar), Travellers, Budget (optional), Transport (dropdown w/ icons) * - Currency selector (defaults to INR), conversion across UI; user can change currency * - Generate Itinerary button → shows results sections: Itinerary, Hotels, Places, Vehicle, Cost, Restaurants * - Booking block with mock live search + payment (demo). Replace adapters below with real APIs when ready. * - NOTE: This demo ...
Comments
Post a Comment