diff --git a/src/components/sections/SanctuaryLocationSection.tsx b/src/components/sections/SanctuaryLocationSection.tsx new file mode 100644 index 0000000..d544452 --- /dev/null +++ b/src/components/sections/SanctuaryLocationSection.tsx @@ -0,0 +1,60 @@ +'use client' + +import { Car, Compass, MapPin, Plane } from 'lucide-react' + +export default function SanctuaryLocationSection() { + const distances = [ + { label: 'Hoedspruit Airport', time: '45 min drive' }, + { label: 'Kruger Mpumalanga', time: '2 hr drive' }, + { label: 'Johannesburg (JNB)', time: '5 hr drive / 1.5 hr flight' }, + ] + return ( +
+
+
+ {/* Map placeholder */} +
+
+
+ +

Greater Kruger, South Africa

+
+
+ {/* Decorative grid lines */} +
+ {Array.from({ length: 24 }).map((_, i) => ( +
+ ))} +
+
+ {/* Travel notes */} +
+

+ Untamed by design +

+

+ Nestled within the expansive Greater Kruger, Molten Rock lies at the + intersection of wilderness and refined seclusion. Arrive via private + airstrip or scenic road transfer from Hoedspruit. +

+
+ {distances.map((d, i) => ( +
+ +
+

{d.label}

+

{d.time}

+
+
+ ))} +
+
+ + Helicopter transfers available for the ultimate entrance +
+
+
+
+
+ ) +} \ No newline at end of file