diff --git a/src/components/sections/EarthlyComfortsSection.tsx b/src/components/sections/EarthlyComfortsSection.tsx new file mode 100644 index 0000000..c722822 --- /dev/null +++ b/src/components/sections/EarthlyComfortsSection.tsx @@ -0,0 +1,61 @@ +import { Leaf, Sun, UtensilsCrossed, Wind } from 'lucide-react' + +export default function EarthlyComfortsSection() { + const amenities = [ + { + icon: Leaf, + title: "Nature-Inspired Spa", + description: + "Treatments using local botanicals — aloe, baobab oil, and wild honey — in an open-air spa overlooking the plains.", + }, + { + icon: Sun, + title: "Open-Air Lounges", + description: + "Unwind on shaded verandas with woven loungers, crackling fire pits, and endless views of the savanna.", + }, + { + icon: UtensilsCrossed, + title: "Farm-to-Table Dining", + description: + "Our kitchen sources produce from nearby farms and our own herb garden — expect grilled nyama choma, fresh sukuma wiki, and seasonal fruits.", + }, + { + icon: Wind, + title: "Guided Nature Walks", + description: + "Walk with Maasai guides who name every bird, plant, and track — a calm, educational way to read the landscape.", + }, + ] + + return ( +
+
+

+ Simple Comforts, Deeply Rooted +

+

+ Every detail at Masai Suites is intentional — from the linens to the + meals — grounding you in a sense of ease. +

+
+ {amenities.map((item, idx) => { + const Icon = item.icon + return ( +
+
+ +
+

{item.title}

+

{item.description}

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