diff --git a/src/components/sections/LocationSection.tsx b/src/components/sections/LocationSection.tsx new file mode 100644 index 0000000..32e854a --- /dev/null +++ b/src/components/sections/LocationSection.tsx @@ -0,0 +1,116 @@ +'use client' + +import { useEmDashContent } from "@/hooks/useEmDashContent" +import { Clock, MapPin, Navigation } from 'lucide-react' + +export default function LocationSection() { + const { items, loading } = useEmDashContent("business_hours") + + if (loading) { + return ( +
+
+
+ ) + } + + if (items.length === 0) return null + + return ( +
+
+
+
+ + Find us + +
+

+ Nestled on the edge of{" "} + Nairobi +

+

+ A peaceful retreat minutes from Nairobi National Park and the city centre. +

+
+ +
+ {/* Map */} +
+