import { MORE_TILE } from "../config/shop.ts"; import { grid, money, PRIMARIES, productUrl, tileUrl } from "../lib/shop.ts"; import { Life } from "./Life.jsx"; function Shot({ product, primary, width, eager, tiles }) { const image = product[primary]; const loading = eager ? "eager" : "lazy"; if (tiles) return {`${product.title}; if (image) return {image.alt; return {product.title}; } export function ProductCard({ product, width = 800, eager = false, tiles = false, life = true, hidden = false, now }) { return ( ); }