creating-share-images

Installation
SKILL.md

Creating Share Images for Next.js

Generate dynamic OpenGraph (1200x630) and Twitter (1200x600) images using next/og ImageResponse.

Quick Start

Create app/opengraph-image.tsx:

import { ImageResponse } from "next/og";

export const runtime = "edge";
export const alt = "Page Title - Site Description";
export const size = { width: 1200, height: 630 };
export const contentType = "image/png";
Installs
12
GitHub Stars
176
First Seen
Mar 1, 2026
creating-share-images — dicklesworthstone/meta_skill