diff --git a/src/components/sections/GallerySection.tsx b/src/components/sections/GallerySection.tsx new file mode 100644 index 0000000..74eb080 --- /dev/null +++ b/src/components/sections/GallerySection.tsx @@ -0,0 +1,53 @@ +'use client' +import { useVulaContent } from '@/hooks/useVulaContent' +import Image from 'next/image' +import { Card, CardContent } from '@/components/ui/Card' +import { useState } from 'react' +import Modal from '@/components/ui/Modal' +import { X } from 'lucide-react' + +export default function GallerySection() { + const { items, loading } = useVulaContent('gallery') + const [selected, setSelected] = useState(null) + if (loading) return
+ if (items.length === 0) return null + return ( + + ) +} \ No newline at end of file