Installation

pnpm add react-og-preview

Interactive Demo

Configure
Adjust the props to see how your link will appear

All Providers

LinkedInLinkedIn

Preview image
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"
    />
  );
}