diff --git a/components/carousel.tsx b/components/carousel.tsx index 0c2c45580..408e24e4f 100644 --- a/components/carousel.tsx +++ b/components/carousel.tsx @@ -9,27 +9,29 @@ export async function Carousel() { if (!products?.length) return null; return ( -
- {[...products, ...products].map((product, i) => ( - - - - ))} +
+
+ {[...products, ...products].map((product, i) => ( + + + + ))} +
); }