import { Card } from "@components/Card.tsx"; import { Recipe } from "@lib/resource/recipes.ts"; export function RecipeCard({ recipe }: { recipe: Recipe }) { const { meta: { image = "/placeholder.svg" } = {} } = recipe; const imageUrl = image.startsWith("Recipes/images/") ? `/api/images?image=${image}&width=200&height=200` : image; return ( ); }