Collection
{collection?.title ?? selected.title}
{showDescription === "yes" && description ? (
{description}
) : null}
{loading
? Array.from({ length: 8 }).map((_, i) => (
))
: products.map((p: any) =>
)}
{!loading && products.length === 0 ? (
This collection has no products yet.
) : null}