diff options
Diffstat (limited to 'apps/web/app/apple-icon.tsx')
| -rw-r--r-- | apps/web/app/apple-icon.tsx | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/apps/web/app/apple-icon.tsx b/apps/web/app/apple-icon.tsx new file mode 100644 index 0000000..f9e2d0b --- /dev/null +++ b/apps/web/app/apple-icon.tsx @@ -0,0 +1,28 @@ +import { ImageResponse } from "next/og" + +export const size = { width: 180, height: 180 } +export const contentType = "image/png" + +export default function AppleIcon() { + return new ImageResponse( + ( + <div + style={{ + width: "100%", + height: "100%", + display: "flex", + alignItems: "center", + justifyContent: "center", + backgroundColor: "#0a0a0a", + color: "#e5e5e5", + fontFamily: "monospace", + fontWeight: 700, + fontSize: 64, + }} + > + asa + </div> + ), + { ...size } + ) +} |