From e21297ceb90675312f8a32dd080d7d44bea6501b Mon Sep 17 00:00:00 2001 From: Michael Novotny Date: Sat, 15 Jul 2023 11:17:44 -0500 Subject: [PATCH] Adds back carousel animation --- components/carousel.tsx | 44 +++++++++++++++++++++-------------------- 1 file changed, 23 insertions(+), 21 deletions(-) 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) => ( + + + + ))} +
); }