India Tourism Webite using React (original) (raw)

`// Destinations.js const Destinations = [ { id: 1, name: 'Taj Mahal', description: 'A symbol of love...', image: 'https://media.geeksforgeeks.org/wp-content/uploads/20240105133131/WhatsApp-Image-2024-01-05-at-10935-PM.jpeg', rating: 4.5, bestTime: 'October to February' }, // Add more destinations { id: 2, name: 'Jaipur City Palace', description: 'A magnificent palace...', image: 'https://media.geeksforgeeks.org/wp-content/uploads/20240105133142/WhatsApp-Image-2024-01-05-at-11213-PM.jpeg', rating: 4.5, bestTime: 'October to February', }, // 18 more destinations... { id: 3, name: 'Goa Beaches', description: 'Beautiful sandy beaches...', image: 'https://media.geeksforgeeks.org/wp-content/uploads/20240105133150/WhatsApp-Image-2024-01-05-at-11221-PM.jpeg', rating: 4.6, bestTime: 'November to February', }, { id: 4, name: 'Kerala Backwaters', description: 'Scenic beauty of backwaters...', image: 'https://media.geeksforgeeks.org/wp-content/uploads/20240105133200/WhatsApp-Image-2024-01-05-at-11235-PM.jpeg', rating: 4.7, bestTime: 'September to March', }, { id: 5, name: 'Hampi Ruins', description: 'Ancient ruins and temples...', image: 'https://media.geeksforgeeks.org/wp-content/uploads/20240105133211/WhatsApp-Image-2024-01-05-at-11252-PM.jpeg', rating: 4.4, bestTime: 'October to March', }, { id: 6, name: 'Rishikesh Yoga Retreats', description: 'Peaceful yoga retreats...', image: 'https://images.unsplash.com/photo-1603867106100-0d2039fc8757?w=500&auto=format&fit=crop&q=60&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8Nnx8cmlzaGlrZXNofGVufDB8fDB8fHww', rating: 4.9, bestTime: 'September to November', }, { id: 7, name: 'Darjeeling Tea Gardens', description: 'Lush green tea gardens...', image: 'https://media.geeksforgeeks.org/wp-content/uploads/20240105133234/WhatsApp-Image-2024-01-05-at-11258-PM.jpeg', rating: 4.5, bestTime: 'March to November', }, { id: 8, name: 'Mysore Palace', description: 'Historical royal palace...', image: 'https://media.geeksforgeeks.org/wp-content/uploads/20240105133255/WhatsApp-Image-2024-01-05-at-11307-PM.jpeg', rating: 4.6, bestTime: 'October to February', }, { id: 9, name: 'Rann of Kutch', description: 'Endless white salt desert...', image: 'https://media.geeksforgeeks.org/wp-content/uploads/20240105133305/WhatsApp-Image-2024-01-05-at-11314-PM.jpeg', rating: 4.7, bestTime: 'October to March', }, { id: 10, name: 'Varanasi Ghats', description: 'Sacred river ghats...', image: 'https://media.geeksforgeeks.org/wp-content/uploads/20240105133347/WhatsApp-Image-2024-01-05-at-11323-PM.jpeg', rating: 4.8, bestTime: 'October to March', }, { id: 11, name: 'Andaman Islands', description: 'Exotic islands and beaches...', image: 'https://media.geeksforgeeks.org/wp-content/uploads/20240105133355/WhatsApp-Image-2024-01-05-at-11332-PM.jpeg', rating: 4.6, bestTime: 'October to April', }, { id: 12, name: 'Udaipur Lakes', description: 'Picturesque lakes and palaces...', image: 'https://media.geeksforgeeks.org/wp-content/uploads/20240105133401/WhatsApp-Image-2024-01-05-at-11338-PM.jpeg', rating: 4.7, bestTime: 'September to March', }, { id: 13, name: 'Ajanta and Ellora Caves', description: 'Ancient rock-cut caves...', image: 'https://media.geeksforgeeks.org/wp-content/uploads/20240105133407/WhatsApp-Image-2024-01-05-at-11343-PM.jpeg', rating: 4.8, bestTime: 'October to March', }, ];

export default Destinations;

`