--- // components/ShoppingCard.astro const { item, remaining, total, unit, category } = Astro.props; // Calcul du pourcentage pour la jauge const percentage = Math.max(0, Math.min(100, (remaining / total) * 100)); const isLow = remaining > 0 && percentage < 25; const isEmpty = remaining <= 0; ---
{item} {isEmpty ? "❌" : "📦"}
{remaining} {unit}
{category || "Logistique"}

Capacité max: {total} {unit}