import { Recipe } from "@lib/recipes.ts"; import IconExternalLink from "https://deno.land/x/tabler_icons_tsx@0.0.3/tsx/external-link.tsx"; import { Star } from "@components/Stars.tsx"; export function RecipeHero({ recipe }: { recipe: Recipe }) { const { meta: { image = "Recipes/images/placeholder.jpg" } = {} } = recipe; const imageUrl = image.startsWith("Recipes/images/") ? `/api/images?image=${image}&width=800` : image; return (
); }