diff --git a/src/components/sections/AmacampaignsSection.tsx b/src/components/sections/AmacampaignsSection.tsx new file mode 100644 index 0000000..d6630df --- /dev/null +++ b/src/components/sections/AmacampaignsSection.tsx @@ -0,0 +1,86 @@ +'use client' + +import { useVulaContent } from '@/hooks/useVulaContent' +import Button from '@/components/ui/Button' +import Image from 'next/image' + +export default function AmacampaignsSection() { + const { items, loading } = useVulaContent('campaigns') + if (loading) { + return ( +
+ {d.headline} +
+ ) : null} + {d.body && ( ++ {d.body} +
+ )} + {d.cta_text && ( + + )} +