# Shadcn Registry 3

A bold dark Open Graph image with large title, circular badge, ghost watermark, and credit text.

> For the complete documentation index, see [llms.txt](/llms.txt). Markdown variants are available by appending `.md` to any URL or sending an `Accept: text/markdown` header. An agent skill is available at [/.well-known/agent-skills/site-skill.md](/.well-known/agent-skills/site-skill.md).



<ComponentPreview name="shadcn-registry-3" />

## Installation [#installation]

<CodeTabs>
  <TabsList>
    <TabsTrigger value="cli">
      Command
    </TabsTrigger>

    <TabsTrigger value="manual">
      Manual
    </TabsTrigger>
  </TabsList>

  <TabsContent value="cli">
    ```bash
    npx shadcn@latest add @ogimagecn/shadcn-registry-3
    ```
  </TabsContent>

  <TabsContent value="manual">
    <Steps>
      <Step>
        Copy and paste the following code into your project.
      </Step>

      <ComponentSource name="shadcn-registry-3" title="components/og/shadcn-registry-3.tsx" />

      <Step>
        Update the import paths to match your project setup.
      </Step>
    </Steps>
  </TabsContent>
</CodeTabs>

## Usage [#usage]

```tsx
import { ImageResponse } from "next/og";

import { ShadcnRegistry3 } from "@/components/og/shadcn-registry-3";

export function GET() {
  return new ImageResponse(
    <ShadcnRegistry3
      title="Brand new uncommon components for your Next.js project. fast-growing freemium (Works with Shadcn CLI 3.0)"
      credit="Design And Devloped By @Gxuri"
      ghost="SKIPER"
    />,
    {
      width: 1200,
      height: 630,
    }
  );
}
```

## API Reference [#api-reference]

### ShadcnRegistry3 [#shadcnregistry3]

| Prop     | Type     |
| -------- | -------- |
| `title`  | `string` |
| `credit` | `string` |
| `ghost`  | `string` |
| `logo`   | `string` |
| `accent` | `string` |
