From 5317290462aa0f78ef8e0dfaf22cc8bfa4627f61 Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Tue, 23 Jun 2026 08:38:57 +0000 Subject: [PATCH] Deploy --- .../sections/HomeComfortsServicesSection.tsx | 66 +++++++++++++++++++ 1 file changed, 66 insertions(+) create mode 100644 src/components/sections/HomeComfortsServicesSection.tsx diff --git a/src/components/sections/HomeComfortsServicesSection.tsx b/src/components/sections/HomeComfortsServicesSection.tsx new file mode 100644 index 0000000..6a1300d --- /dev/null +++ b/src/components/sections/HomeComfortsServicesSection.tsx @@ -0,0 +1,66 @@ +'use client' + +import Image from 'next/image' +import { ChefHat, Star, Trees, Tv, UtensilsCrossed, Waves } from 'lucide-react' + +const services = [ + { + icon: UtensilsCrossed, + title: 'Traditional English Breakfast', + desc: 'Start your day with a hearty full English breakfast, served fresh each morning in our dining room. Dinner available on request.', + }, + { + icon: Star, + title: 'Guest Laundry', + desc: 'Laundry service available – just drop your items and we take care of the rest.', + }, + { + icon: ChefHat, + title: 'Fully Equipped Kitchen', + desc: 'A modern kitchen for self-catering guests, with all utensils, stove, microwave and fridge.', + }, + { + icon: Waves, + title: 'Swimming Pool & Braai', + desc: 'Cool off in our pool or fire up the braai in the tranquil entertainment area – the perfect KZN afternoon.', + }, + { + icon: Tv, + title: 'Lounge with DStv', + desc: 'Relax in our cosy lounge with comfortable seating and full DStv bouquet for your favourite shows.', + }, + { + icon: Trees, + title: 'Private Nature Reserve Access', + desc: 'Step across the street into the reserve – spot zebras grazing, monkeys playing, and breathe the bushveld air.', + }, +] + +export default function HomeComfortsServicesSection() { + return ( +
+
+

All the Comforts of Home

+

+ Everything you need under one roof – from a hearty breakfast to a sunset braai, we have you covered. +

+
+ {services.map((svc, i) => { + const Icon = svc.icon + return ( +
+
+ +
+
+

{svc.title}

+

{svc.desc}

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