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