From 06eb86d1115fc53cdee36039c545396bafa34eb0 Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Wed, 29 Jul 2026 18:15:23 +0000 Subject: [PATCH] Deploy --- .../sections/StreetStyleGallerySection.tsx | 73 +++++++++++++++++++ 1 file changed, 73 insertions(+) create mode 100644 src/components/sections/StreetStyleGallerySection.tsx 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