From 2cb4e3bb6738234b181fdd244a3ea2044f8c8ea0 Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Tue, 23 Jun 2026 08:47:12 +0000 Subject: [PATCH] Deploy --- src/components/sections/AmenitiesSection.tsx | 40 ++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 src/components/sections/AmenitiesSection.tsx diff --git a/src/components/sections/AmenitiesSection.tsx b/src/components/sections/AmenitiesSection.tsx new file mode 100644 index 0000000..a8b6789 --- /dev/null +++ b/src/components/sections/AmenitiesSection.tsx @@ -0,0 +1,40 @@ +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}

+
+
+ ) + })} +
+
+
+ ) +} \ No newline at end of file