diff --git a/src/pages/Destinations.tsx b/src/pages/Destinations.tsx index 5ee9cc2..eca1b6f 100644 --- a/src/pages/Destinations.tsx +++ b/src/pages/Destinations.tsx @@ -10,12 +10,12 @@ import Header from "@/components/Header"; import Footer from "@/components/Footer"; const allDestinations = [ - { name: "Bali", country: "Indonesia", region: "Asia", type: "Beach", rating: "4.9", price: "\$899", gradient: "from-blue-600/60 to-cyan-500/40" }, - { name: "Santorini", country: "Greece", region: "Europe", type: "City", rating: "4.8", price: "\$1,299", gradient: "from-amber-600/60 to-orange-400/40" }, - { name: "Machu Picchu", country: "Peru", region: "Americas", type: "Mountain", rating: "4.9", price: "\$1,499", gradient: "from-emerald-600/60 to-teal-400/40" }, - { name: "Kyoto", country: "Japan", region: "Asia", type: "City", rating: "4.7", price: "\$1,199", gradient: "from-purple-600/60 to-violet-400/40" }, - { name: "Marrakech", country: "Morocco", region: "Africa", type: "Adventure", rating: "4.8", price: "\$799", gradient: "from-rose-600/60 to-pink-400/40" }, - { name: "Queenstown", country: "New Zealand", region: "Oceania", type: "Adventure", rating: "4.9", price: "\$1,599", gradient: "from-sky-600/60 to-indigo-400/40" }, + { name: "Bali", country: "Indonesia", region: "Asia", type: "Beach", rating: "4.9", price: "$899", gradient: "from-blue-600/60 to-cyan-500/40" }, + { name: "Santorini", country: "Greece", region: "Europe", type: "City", rating: "4.8", price: "$1,299", gradient: "from-amber-600/60 to-orange-400/40" }, + { name: "Machu Picchu", country: "Peru", region: "Americas", type: "Mountain", rating: "4.9", price: "$1,499", gradient: "from-emerald-600/60 to-teal-400/40" }, + { name: "Kyoto", country: "Japan", region: "Asia", type: "City", rating: "4.7", price: "$1,199", gradient: "from-purple-600/60 to-violet-400/40" }, + { name: "Marrakech", country: "Morocco", region: "Africa", type: "Adventure", rating: "4.8", price: "$799", gradient: "from-rose-600/60 to-pink-400/40" }, + { name: "Queenstown", country: "New Zealand", region: "Oceania", type: "Adventure", rating: "4.9", price: "$1,599", gradient: "from-sky-600/60 to-indigo-400/40" }, ]; export default function DestinationsPage() { @@ -82,7 +82,7 @@ export default function DestinationsPage() {