Gift card Open Graph Image Template
A gift card design with a drawn card panel, title, and redeem line.
A gift card design with a drawn card panel, title, and redeem line.
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 Gift card template for a store's gift card landing page and any post that promotes buying credit for someone else. The offer copy sits in the left column while a drawn card on the right shows the brand mark and amount, so the share reads as a product a shopper can picture rather than a plain link.
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 the page 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 card artwork is drawn from plain divs, so the whole image is self contained.
Install with the shadcn CLI using your Shadcn UI Blocks API key:
npx shadcn@latest add @shadcn-ui-blocks/og-image-gift-card
The file lands at app/opengraph-image.tsx, which makes it the site wide share card. For a dedicated page, move it into that segment instead, for example app/gift-cards/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 title, the description, the amount, and the url, all sitting in the left column. The drawn card on the right repeats the brand mark, carries a fixed GIFT CARD label, and shows the amount large in its corner, so a short currency string reads best. The three small bars on the card are decorative, standing in for a magnetic stripe, and the panel keeps a fixed 400 by 250 size.
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.