diff --git a/src/components/sections/StreetStyleGallerySection.tsx b/src/components/sections/StreetStyleGallerySection.tsx new file mode 100644 index 0000000..bfd85d6 --- /dev/null +++ b/src/components/sections/StreetStyleGallerySection.tsx @@ -0,0 +1,73 @@ +'use client' + +import { useVulaContent } from "@/hooks/useVulaContent" +import Image from "next/image" + +interface GalleryItem { + id: string + data: { + title?: string + description?: string + image?: string + } +} + +export default function StreetStyleGallerySection() { + const { items, loading } = useVulaContent("gallery") + + if (loading) { + return ( +
+
+
+
+
+ ) + } + + if (items.length === 0) return null + + return ( + + ) +} \ No newline at end of file