diff --git a/src/components/sections/OriginRootsSection.tsx b/src/components/sections/OriginRootsSection.tsx new file mode 100644 index 0000000..0928aa9 --- /dev/null +++ b/src/components/sections/OriginRootsSection.tsx @@ -0,0 +1,64 @@ +'use client' + +import { useVulaContent } from '@/hooks/useVulaContent' +import Image from 'next/image' +import Button from '@/components/ui/Button' +import Link from 'next/link' + +export default function OriginRootsSection() { + const { items, loading } = useVulaContent('posts') + + if (loading) return
{data.category}
+ )} + {data.title && ( +{data.excerpt}
+ )} + {data.body && ( +{data.body}
+ )} +By {data.author}
+ )} + + + +