diff --git a/src/components/sections/BusinessHoursSection.tsx b/src/components/sections/BusinessHoursSection.tsx new file mode 100644 index 0000000..343514f --- /dev/null +++ b/src/components/sections/BusinessHoursSection.tsx @@ -0,0 +1,59 @@ +'use client' +import { useVulaContent } from '@/hooks/useVulaContent' +import { Clock } from 'lucide-react' + +export default function BusinessHoursSection() { + const { items, loading } = useVulaContent('business_hours') + + if (loading) return
Office hours
+| Day | +Hours | +Note | +
|---|---|---|
| {d.day_of_week} | ++ {d.is_closed ? ( + Closed + ) : ( + {d.open_time} – {d.close_time} + )} + | +{d.note ? d.note : '—'} | +
+ Consultations are by appointment. If the office is closed, email us and we will respond the next working day. +
+