diff --git a/src/components/sections/GuestReflectionsSection.tsx b/src/components/sections/GuestReflectionsSection.tsx new file mode 100644 index 0000000..2eac575 --- /dev/null +++ b/src/components/sections/GuestReflectionsSection.tsx @@ -0,0 +1,95 @@ +'use client' + +import { useEmDashContent } from '@/hooks/useEmDashContent' +import Image from 'next/image' +import { Quote } from 'lucide-react' + +export default function GuestReflectionsSection() { + const { items, loading } = useEmDashContent('posts') + + if (loading) { + return ( +
+ Honest stories from travellers who stayed with us +
++
+ “{d.excerpt || (d.body ? d.body.substring(0, 150) + '...' : '')}” +
++ {d.author || 'Anonymous Guest'} +
++ {d.title} +
+