Installation
pnpm add react-og-previewInteractive Demo
Configure
Adjust the props to see how your link will appear
All Providers

React
react.dev
Quick Start
import { SocialPreview } from "react-og-preview";
// Import once in your app
import "react-og-preview/styles.css";
function App() {
return (
<SocialPreview
provider="twitter"
variant="compact"
url="https://example.com"
title="My Article Title"
description="A brief description..."
image="https://example.com/og-image.jpg"
/>
);
}