# Showcase

A product-showcase Open Graph image with a centered headline above a faux browser window and a minimal dashboard UI.

> 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>
  <Showcase />
</ComponentPreview>

## Installation [#installation]

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

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

  <TabsContent value="cli">
    ```bash
    npx shadcn@latest add https://ogimagecn.vercel.app/r/showcase.json
    ```
  </TabsContent>

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

      <ComponentSource name="showcase" title="components/og/showcase.tsx" />

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

## Usage [#usage]

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

import { Showcase } from "@/components/og/showcase";

export function GET() {
  return new ImageResponse(
    <Showcase
      title="Run your business smarter"
      subtitle="Every metric in one calm view."
      url="app.acme.com"
    />,
    { width: 1200, height: 630 }
  );
}
```

## API Reference [#api-reference]

### Showcase [#showcase]

| Prop       | Type     | Default |
| ---------- | -------- | ------- |
| `title`    | `string` | `-`     |
| `subtitle` | `string` | `-`     |
| `url`      | `string` | `-`     |
| `accent`   | `string` | `-`     |
