# Grid

A framed, technical Open Graph image with a dashed border grid and a corner brand mark.

> 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="grid" />

## Installation [#installation]

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

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

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

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

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

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

## Usage [#usage]

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

import { Grid } from "@/components/og/grid";

export function GET() {
  return new ImageResponse(
    <Grid
      title="Build your own OG images"
      description="Composable components powered by Satori and the next/og runtime."
      brand="ogimagecn"
    />,
    {
      width: 1200,
      height: 630,
    }
  );
}
```

## API Reference [#api-reference]

### Grid [#grid]

| Prop          | Type     |
| ------------- | -------- |
| `title`       | `string` |
| `description` | `string` |
| `brand`       | `string` |
| `logo`        | `string` |
