diff --git a/src/components/sections/GuestStoriesSection.tsx b/src/components/sections/GuestStoriesSection.tsx new file mode 100644 index 0000000..f1a1399 --- /dev/null +++ b/src/components/sections/GuestStoriesSection.tsx @@ -0,0 +1,60 @@ +'use client' +import { useEmDashContent } from '@/hooks/useEmDashContent' +import Image from 'next/image' +import { Card, CardHeader, CardTitle, CardContent } from '@/components/ui/Card' + +export default function GuestStoriesSection() { + const { items, loading } = useEmDashContent('posts') + + if (loading) return
{d.excerpt}
+ {d.author && ( +— {d.author}
+ )} +