Recipe Open Graph Image Template
A recipe card with a dish title, description, and time and serving chips.
A recipe card with a dish title, description, and time and serving chips.
Every Open Graph image template is included with Basic and Pro. Pick a plan to copy the code, install with the CLI, and download the raw SVG.
Already purchased? Log in
Use the Recipe template when you want each dish to ship a share card that answers the questions cooks ask first. It leads with the dish name, backs it up with a one line description, and closes with time, servings, and diet chips, the three facts a reader checks before saving a recipe.
This template is a metadata image route for the Next.js App Router. The file exports size, contentType, and alt values plus a default async function that returns an ImageResponse. When a page in the segment is shared, satori converts the JSX into an SVG document, the runtime rasterizes that SVG into a 1200 by 630 PNG, and Next.js serves the result and wires the og:image and twitter:image tags into the page head automatically. The fact chips are drawn from a plain array, so a recipe with a different time or diet needs no layout work.
Install with the shadcn CLI using your Shadcn UI Blocks API key:
npx shadcn@latest add @shadcn-ui-blocks/og-image-recipe
The file lands at app/opengraph-image.tsx, which makes it the site wide share card. For a recipe site you will usually move it into the recipe segment instead, for example app/recipes/[slug]/opengraph-image.tsx. You can also copy the code from this page straight into your project.
The card renders text with Inter, read from assets/fonts at your project root with node:fs so the font files never ship to the browser. Download the latin woff files for weights 400, 500, 600, and 700 from Fontsource and save them as assets/fonts/inter-latin-400-normal.woff and so on.
The content object holds the brand, the label chip, the title, the description, and the url. The chips array drives the fact pills along the bottom row; three fit comfortably before they crowd the url. To generate a unique card per recipe, accept params in the default export, look up the dish the same way the page does, and feed its fields into the JSX. Keep the title to a couple of lines so it stays above the description.
satori supports a focused subset of CSS: flexbox layout only, flat colors, and an explicit display: flex on any element with multiple children. Keep those rules in mind if you rework the layout.