import { Card, CardContent } from "@/components/ui/card" import Image from "next/image" import { AnimatedNumber } from "@/components/animated-number" interface VendingMachineCardProps { name: string description: string image: string alt: string selections?: number items?: number } export function VendingMachineCard({ name, description, image, alt, selections = 0, items = 0, }: VendingMachineCardProps) { return (
{alt}

{name}

{description}

Selections
Items
) }