react.dev
React Server Components
Server Components are a new type of Component that renders ahead of time.
Server Components are a new type of Component that renders ahead of time.
import { LinkPreview } from "@/components/tool-ui/link-preview";export function Example() { return ( <LinkPreview id="link-preview-example" href="https://react.dev/reference/rsc/server-components" title="React Server Components" description="Server Components are a new type of Component that renders ahead of time." image="https://images.unsplash.com/photo-1633356122544-f134324a6cee" domain="react.dev" ratio="16:9" /> );}Display title, description, and image from Open Graph
Show site favicon alongside domain name
Copy components/tool-ui/link-preview and the shared directory into your project.
pnpm dlx shadcn@latest add badge button card tooltipProp
Type
import { LinkPreview } from "@/components/tool-ui/link-preview";
export function Example() {
return (
<LinkPreview
id="link-preview-example"
href="https://react.dev/reference/rsc/server-components"
title="React Server Components"
description="Server Components are a new type of Component that renders ahead of time."
image="https://images.unsplash.com/photo-1633356122544-f134324a6cee"
domain="react.dev"
ratio="16:9"
/>
);
}pnpm dlx shadcn@latest add badge button card tooltip