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