From 41da56a68a7e356a29672ccdae54e587201ef726 Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Mon, 27 Jul 2026 18:59:57 +0000 Subject: [PATCH] Deploy --- .../sections/StreetStyleGallerySection.tsx | 70 +++++++++++++++++++ 1 file changed, 70 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..cb9faaa --- /dev/null +++ b/src/components/sections/StreetStyleGallerySection.tsx @@ -0,0 +1,70 @@ +'use client' + +import { useVulaContent } from "@/hooks/useVulaContent" +import Image from "next/image" + +export default function StreetStyleGallerySection() { + const { items, loading } = useVulaContent("gallery") + + if (loading) { + return ( +
+
+
+ ) + } + + if (items.length === 0) return null + + return ( + + ) +}