From d03340240c742bdd70f45934c26a6ab8a3a6f52d Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Tue, 23 Jun 2026 08:39:18 +0000 Subject: [PATCH] Deploy --- .../sections/VictoryMomentsGallerySection.tsx | 68 +++++++++++++++++++ 1 file changed, 68 insertions(+) create mode 100644 src/components/sections/VictoryMomentsGallerySection.tsx diff --git a/src/components/sections/VictoryMomentsGallerySection.tsx b/src/components/sections/VictoryMomentsGallerySection.tsx new file mode 100644 index 0000000..bf444b5 --- /dev/null +++ b/src/components/sections/VictoryMomentsGallerySection.tsx @@ -0,0 +1,68 @@ +'use client' + +import { useEmDashContent } from '@/hooks/useEmDashContent' +import Image from 'next/image' +import { Card, CardContent, CardHeader, CardTitle, CardDescription } from '@/components/ui/Card' + +export default function VictoryMomentsGallerySection() { + const { items, loading } = useEmDashContent('gallery') + + if (loading) { + return ( +
+
+
+ ) + } + + if (items.length === 0) return null + + return ( + + ) +} \ No newline at end of file