summaryrefslogtreecommitdiff
path: root/apps/web/app/icon-192x192/route.tsx
blob: 0a3d703cf03c82bb5a9174558d6d0c47b1c5cb50 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import { ImageResponse } from "next/og"

export function GET() {
  return new ImageResponse(
    (
      <div
        style={{
          width: "100%",
          height: "100%",
          display: "flex",
          alignItems: "center",
          justifyContent: "center",
          backgroundColor: "#0a0a0a",
          color: "#e5e5e5",
          fontFamily: "monospace",
          fontWeight: 700,
          fontSize: 96,
        }}
      >
        asa
      </div>
    ),
    { width: 192, height: 192 }
  )
}