diff --git a/src/components/sections/ShopCTASection.tsx b/src/components/sections/ShopCTASection.tsx new file mode 100644 index 0000000..4f62c02 --- /dev/null +++ b/src/components/sections/ShopCTASection.tsx @@ -0,0 +1,80 @@ +'use client' + +import { useState } from 'react'; +import { useVulaContent } from '@/hooks/useVulaContent' +import Button from '@/components/ui/Button' +import Image from 'next/image' +import Link from 'next/link' + +export default function ShopCTASection() { + const { items, loading } = useVulaContent('advert_banners') + const [formData, setFormData] = useState({}) // dummy to satisfy hook rule + + if (loading) { + return ( +
+ Limited drops — get yours before they vanish +
+