--- interface Props { product: { id: string | number; name: string; price: number | string; image_url: string; }; } const { product } = Astro.props; const productJson = JSON.stringify(product); ---