import { Card, CardHeader, CardTitle, CardContent } from '@/components/ui/Card' import { Eye, Heart, TreePine, UtensilsCrossed, Wifi, Wine } from 'lucide-react' const amenities = [ { icon: Wifi, title: 'Complimentary Wi-Fi', description: 'Stay connected even in the bush with high-speed satellite internet in all rooms and common areas.' }, { icon: UtensilsCrossed, title: 'Fine Dining', description: 'Enjoy gourmet African cuisine prepared by our in-house chef using fresh local ingredients.' }, { icon: Wine, title: 'Curated Wine Cellar', description: "A selection of South Africa's finest wines available for pairing with your meals." }, { icon: TreePine, title: 'Nature Trails', description: "Guided bush walks led by experienced rangers revealing the region's flora and fauna." }, { icon: Eye, title: 'Game Drives', description: 'Daily morning and sunset game drives in open vehicles across the private reserve.' }, { icon: Heart, title: 'Spa & Wellness', description: 'Bespoke treatments using organic African botanicals in an open-air spa overlooking the plains.' }, ] export default function AmenitiesSection() { return (

Luxury Amenities

Every detail curated for an unforgettable wilderness experience.

{amenities.map((item, index) => { const Icon = item.icon return (
{item.title}

{item.description}

) })}
) }