diff --git a/src/components/sections/SixSanctuarySuitesSection.tsx b/src/components/sections/SixSanctuarySuitesSection.tsx new file mode 100644 index 0000000..ac9ae9a --- /dev/null +++ b/src/components/sections/SixSanctuarySuitesSection.tsx @@ -0,0 +1,57 @@ +import Image from 'next/image' +import { Card, CardHeader, CardTitle, CardContent } from '@/components/ui/Card' + +export default function SixSanctuarySuitesSection() { + const suites = [ + { name: 'Magma Suite', description: "Private plunge pool bathed in volcanic warmth, outdoor shower under an endless sky.", image: "https://images.pexels.com/photos/33315724/pexels-photo-33315724.jpeg?auto=compress&cs=tinysrgb&h=350" }, + { name: 'Obsidian Suite', description: "Deep charcoal stone interiors, floor-to-ceiling glass, and a fire pit overlooking the bushveld.", image: "https://images.pexels.com/photos/33067642/pexels-photo-33067642.jpeg?auto=compress&cs=tinysrgb&h=350" }, + { name: 'Cinder Suite', description: "Intimate loft with suspended hammock, private terrace, and sunrise-facing outdoor shower.", image: "https://images.pexels.com/photos/6462892/pexels-photo-6462892.jpeg?auto=compress&cs=tinysrgb&h=350" }, + { name: 'Basalt Suite', description: "Two-bedroom sanctuary with a shared infinity pool and an open-plan lounge under thatch.", image: "https://images.pexels.com/photos/11255289/pexels-photo-11255289.jpeg?auto=compress&cs=tinysrgb&h=350" }, + { name: 'Pumice Suite', description: "Minimalist design with natural textures, a secluded boma for stargazing, and a private butler.", image: "https://images.pexels.com/photos/18823961/pexels-photo-18823961.jpeg?auto=compress&cs=tinysrgb&h=350" }, + { name: 'Tephra Suite', description: "Perched on a ridge with panoramic views, outdoor bath carved from a single rock.", image: "https://images.pexels.com/photos/16448674/pexels-photo-16448674.jpeg?auto=compress&cs=tinysrgb&h=350" }, + ] + + return ( +
+
+
+
+ +

Six Sanctuary Suites

+ +
+

+ Named after volcanic elements +

+

+ Each suite is a private sanctuary with plunge pool, outdoor shower, and panoramic bush views — designed for intimacy and exclusivity. +

+
+
+ {suites.map((suite) => ( + +
+ {suite.name} +
+ + {suite.name} + + +

{suite.description}

+
+
+ ))} +
+
+

Starting from R12 500 per night

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