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