diff --git a/src/components/sections/FeaturedProductsSection.tsx b/src/components/sections/FeaturedProductsSection.tsx new file mode 100644 index 0000000..04b6289 --- /dev/null +++ b/src/components/sections/FeaturedProductsSection.tsx @@ -0,0 +1,33 @@ +'use client' +import Image from 'next/image' +import { useVulaContent } from '@/hooks/useVulaContent' + +export default function FeaturedProductsSection() { + const { items, loading } = useVulaContent('featured_products') + if (loading) return
{body}
} +