diff --git a/src/components/sections/DropCampaignsSection.tsx b/src/components/sections/DropCampaignsSection.tsx new file mode 100644 index 0000000..1da1da6 --- /dev/null +++ b/src/components/sections/DropCampaignsSection.tsx @@ -0,0 +1,85 @@ +'use client' + +import { useVulaContent } from "@/hooks/useVulaContent" +import Button from "@/components/ui/Button" +import Image from "next/image" + +export default function DropCampaignsSection() { + const { items, loading } = useVulaContent("campaigns") + + if (loading) { + return ( +
+ Limited drops — move before they vanish +
++ {d.headline} +
+ )} + {d.body && ( ++ {d.body} +
+ )} + {d.cta_text && ( + + )} +