diff --git a/src/components/sections/NewArrivalsSection.tsx b/src/components/sections/NewArrivalsSection.tsx new file mode 100644 index 0000000..10fa0e6 --- /dev/null +++ b/src/components/sections/NewArrivalsSection.tsx @@ -0,0 +1,48 @@ +'use client' +import { useVulaContent } from '@/hooks/useVulaContent' +import { Card, CardContent, CardFooter } from '@/components/ui/Card' +import Button from '@/components/ui/Button' +import Image from 'next/image' + +export default function NewArrivalsSection() { + const { items, loading } = useVulaContent('product_carousels') + + if (loading) return
{d.description}
} + {d.price !== undefined && ( +R{Number(d.price || 0).toFixed(2)}
+ )} +