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