Test commit

This commit is contained in:
Étienne St-Pierre 2025-03-25 17:25:46 -04:00
parent 5b70817059
commit 6f1fd2727d

View File

@ -8,6 +8,7 @@ export async function Carousel() {
if (!products?.length) return null;
// test
// Purposefully duplicating products to make the carousel loop and not run out of products on wide screens.
const carouselProducts = [...products, ...products, ...products];