summaryrefslogtreecommitdiff
path: root/apps/web/app/icon-512x512/route.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'apps/web/app/icon-512x512/route.tsx')
-rw-r--r--apps/web/app/icon-512x512/route.tsx25
1 files changed, 25 insertions, 0 deletions
diff --git a/apps/web/app/icon-512x512/route.tsx b/apps/web/app/icon-512x512/route.tsx
new file mode 100644
index 0000000..fedee34
--- /dev/null
+++ b/apps/web/app/icon-512x512/route.tsx
@@ -0,0 +1,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: 256,
+ }}
+ >
+ asa
+ </div>
+ ),
+ { width: 512, height: 512 }
+ )
+}