From 9c496d67eabbe1cc05d1701d858b2ad48f2461e2 Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Wed, 5 Aug 2026 18:14:38 +0000 Subject: [PATCH] Deploy --- src/components/sections/LegalTeamSection.tsx | 49 ++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 src/components/sections/LegalTeamSection.tsx diff --git a/src/components/sections/LegalTeamSection.tsx b/src/components/sections/LegalTeamSection.tsx new file mode 100644 index 0000000..ca229f3 --- /dev/null +++ b/src/components/sections/LegalTeamSection.tsx @@ -0,0 +1,49 @@ +'use client' +import Image from 'next/image' +import { useVulaContent } from '@/hooks/useVulaContent' +import { User } from 'lucide-react' + +export default function LegalTeamSection() { + const { items, loading } = useVulaContent('team_members') + + if (loading) { + return
+ } + + if (items.length === 0) return null + + return ( + + ) +} \ No newline at end of file