"use client"
import { useState } from "react"
import { Button } from "@/components/ui/button"
import { Badge } from "@/components/ui/badge"
import { Input } from "@/components/ui/input"
import { Plane, MapPin, Phone, Search, Globe, Mountain, Waves, Building } from "lucide-react"
import Link from "next/link"
const destinations = [
{
id: 1,
name: "Thailand",
tagline: "Land of Smiles",
image: "/placeholder.svg?height=300&width=400",
rating: 4.8,
startingPrice: "₹35,999",
duration: "5-7 Days",
bestTime: "Nov-Mar",
category: "Beach",
highlights: ["Bangkok Temples", "Phuket Beaches", "Thai Massage", "Street Food"],
whyChoose: "Perfect for first-time international travelers. Affordable, visa-on-arrival, and amazing food!",
indianFriendly: ["Vegetarian food available", "Hindi-speaking guides", "Indian restaurants"],
costComparison: "Cheaper than Goa luxury trip by ₹8,000",
packages: 12,
icon: Waves,
},
{
id: 2,
name: "Dubai, UAE",
tagline: "City of Gold",
image: "/placeholder.svg?height=300&width=400",
rating: 4.9,
startingPrice: "₹42,999",
duration: "4-6 Days",
bestTime: "Nov-Apr",
category: "City",
highlights: ["Burj Khalifa", "Desert Safari", "Gold Souk", "Dubai Mall"],
whyChoose: "Luxury destination with Indian community. No visa hassles for Indians!",
indianFriendly: ["Large Indian community", "Indian restaurants everywhere", "Hindi widely understood"],
costComparison: "Same price as Kashmir premium trip",
packages: 8,
icon: Building,
},
{
id: 3,
name: "Singapore",
tagline: "Garden City",
image: "/placeholder.svg?height=300&width=400",
rating: 4.7,
startingPrice: "₹52,999",
duration: "4-5 Days",
bestTime: "Year Round",
category: "City",
highlights: ["Universal Studios", "Gardens by Bay", "Sentosa Island", "Marina Bay"],
whyChoose: "Perfect family destination with amazing attractions and safety!",
indianFriendly: ["Tamil is official language", "Little India district", "Indian food everywhere"],
costComparison: "₹10,000 less than luxury Goa trip",
packages: 6,
icon: Building,
},
{
id: 4,
name: "Bali, Indonesia",
tagline: "Island of Gods",
image: "/placeholder.svg?height=300&width=400",
rating: 4.8,
startingPrice: "₹45,999",
duration: "6-8 Days",
bestTime: "Apr-Oct",
category: "Beach",
highlights: ["Ubud Rice Terraces", "Beach Clubs", "Temple Tours", "Volcano Trekking"],
whyChoose: "Perfect honeymoon destination with stunning nature and affordable luxury!",
indianFriendly: ["Visa on arrival", "Vegetarian food available", "Yoga and wellness"],
costComparison: "₹5,000 cheaper than Andaman trip",
packages: 10,
icon: Waves,
},
{
id: 5,
name: "Switzerland",
tagline: "Alpine Paradise",
image: "/placeholder.svg?height=300&width=400",
rating: 4.9,
startingPrice: "₹1,25,999",
duration: "8-10 Days",
bestTime: "Jun-Sep",
category: "Mountain",
highlights: ["Jungfraujoch", "Rhine Falls", "Lake Geneva", "Matterhorn"],
whyChoose: "Dream destination for mountain lovers and Bollywood fans!",
indianFriendly: ["Indian tour groups common", "Vegetarian options", "Bollywood filming locations"],
costComparison: "₹30,000 less than multiple domestic hill station trips",
packages: 5,
icon: Mountain,
},
{
id: 6,
name: "Maldives",
tagline: "Tropical Paradise",
image: "/placeholder.svg?height=300&width=400",
rating: 4.6,
startingPrice: "₹45,999",
duration: "4-6 Days",
bestTime: "Nov-Apr",
category: "Beach",
highlights: ["Overwater Villas", "Snorkeling", "Sunset Cruises", "Spa Treatments"],
whyChoose: "Closest international beach paradise to India with no visa required!",
indianFriendly: ["No visa required", "Indian restaurants available", "Hindi-speaking staff"],
costComparison: "Same as Leh Ladakh luxury trip",
packages: 7,
icon: Waves,
},
{
id: 7,
name: "Turkey",
tagline: "Where East Meets West",
image: "/placeholder.svg?height=300&width=400",
rating: 4.7,
startingPrice: "₹55,999",
duration: "7-9 Days",
bestTime: "Apr-Oct",
category: "Cultural",
highlights: ["Hagia Sophia", "Cappadocia Balloons", "Blue Mosque", "Pamukkale"],
whyChoose: "Rich history, amazing food, and great value for money!",
indianFriendly: ["E-visa available", "Halal food widely available", "Historical significance"],
costComparison: "₹15,000 cheaper than Rajasthan heritage tour",
packages: 4,
icon: Building,
},
{
id: 8,
name: "Japan",
tagline: "Land of Rising Sun",
image: "/placeholder.svg?height=300&width=400",
rating: 4.9,
startingPrice: "₹89,999",
duration: "8-10 Days",
bestTime: "Mar-May, Sep-Nov",
category: "Cultural",
highlights: ["Mount Fuji", "Tokyo Skytree", "Kyoto Temples", "Cherry Blossoms"],
whyChoose: "Unique culture, amazing technology, and unforgettable experiences!",
indianFriendly: ["Vegetarian food available", "English signage", "Respectful culture"],
costComparison: "₹20,000 less than premium domestic cultural tours",
packages: 3,
icon: Mountain,
},
]
const categories = ["All", "Beach", "City", "Mountain", "Cultural"]
export default function DestinationsPage() {
const [filteredDestinations, setFilteredDestinations] = useState(destinations)
const [selectedCategory, setSelectedCategory] = useState("All")
const [searchTerm, setSearchTerm] = useState("")
const filterDestinations = () => {
let filtered = destinations
if (selectedCategory !== "All") {
filtered = filtered.filter(dest => dest.category === selectedCategory)
}
if (searchTerm) {
filtered = filtered.filter(dest =>
dest.name.toLowerCase().includes(searchTerm.toLowerCase()) ||
dest.tagline.toLowerCase().includes(searchTerm.toLowerCase())
)
}
setFilteredDestinations(filtered)
}
const getCategoryIcon = (category: string) => {
switch (category) {
case "Beach": return Waves
case "City": return Building
case "Mountain": return Mountain
case "Cultural": return Globe
default: return MapPin
}
}
return (
{/* Header */}
TRIPS FROM INDIA
Making International Travel Affordable
Home
Packages
Destinations
About
Contact
+91 98765 43210
{/* Hero Section */}
Explore Amazing Destinations
International destinations that cost less than your domestic trips!
35+ Countries
Indian-Friendly Services
Affordable Packages
{/* Search and Filter */}