diff --git a/src/components/sections/RoyalKwaNtofontofoServicesSection.tsx b/src/components/sections/RoyalKwaNtofontofoServicesSection.tsx new file mode 100644 index 0000000..4358969 --- /dev/null +++ b/src/components/sections/RoyalKwaNtofontofoServicesSection.tsx @@ -0,0 +1,49 @@ +import { Card, CardContent } from "@/components/ui/Card" +import { Car, Coffee, Flame, MapPin, Sofa, Star, Tag, UtensilsCrossed, Waves } from 'lucide-react' + +export default function RoyalKwaNtofontofoServicesSection() { + const services = [ + { icon: Coffee, title: "Traditional English Breakfast", desc: "Start your day with a full English breakfast, served fresh daily." }, + { icon: UtensilsCrossed, title: "Personalised Dinner", desc: "Request a home-cooked dinner with local flavours and seasonal produce." }, + { icon: Flame, title: "Braai Facilities", desc: "Enjoy a classic South African braai by the pool in our tranquil entertainment area." }, + { icon: Car, title: "Airport Transfers", desc: "We are 1 km from Pietermaritzburg Airport – we can arrange pick-up and drop-off." }, + { icon: Waves, title: "Swimming Pool", desc: "Take a dip in our sparkling pool, surrounded by lush gardens and privacy." }, + { icon: Sofa, title: "Lounge & Dining Room", desc: "Relax in our cosy lounge or enjoy meals in the elegant dining room." }, + { icon: Star, title: "Fully Equipped Kitchen", desc: "Guests have access to a modern kitchen for self-catering convenience." }, + { icon: Tag, title: "Launderette & Laundry", desc: "We offer laundry services to keep your wardrobe fresh during your stay." }, + ] + + return ( +
+
+
+ Royal Services +

+ Everything You Need +

+

+ From hearty breakfasts to secure parking, every detail is designed to make + your stay effortless and memorable. +

+
+ +
+ {services.map((service, index) => { + const IconComponent = service.icon + return ( + + +
+ +
+

{service.title}

+

{service.desc}

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