diff --git a/src/components/sections/GallerySection.tsx b/src/components/sections/GallerySection.tsx new file mode 100644 index 0000000..d2b924d --- /dev/null +++ b/src/components/sections/GallerySection.tsx @@ -0,0 +1,42 @@ +'use client' +import Image from 'next/image' +import { useEmDashContent } from '@/hooks/useEmDashContent' + +export default function GallerySection() { + const { items, loading } = useEmDashContent('gallery') + if (loading) return
+ if (!items || items.length === 0) return null + return ( + + ) +} \ No newline at end of file