import { getCollectionProducts } from 'lib/shopware'; import Image from 'next/image'; import Link from 'next/link'; export async function Carousel() { const collectionName = `${process.env.SHOPWARE_USE_SEO_URLS}` === 'true' ? 'Summer-BBQ/Hidden-Carousel-Category' : 'ff7bf3c59f1342a685844fbf8fdf9dc8'; const { products } = await getCollectionProducts({ collection: collectionName }); if (!products?.length) return null; return (