From 312995cefa96d41e8b5e53c9c74a20693d41f10c Mon Sep 17 00:00:00 2001 From: kleap-admin Date: Fri, 16 Jan 2026 16:18:43 +0000 Subject: [PATCH] Update app/icon.tsx --- app/icon.tsx | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 app/icon.tsx diff --git a/app/icon.tsx b/app/icon.tsx new file mode 100644 index 0000000..222885a --- /dev/null +++ b/app/icon.tsx @@ -0,0 +1,31 @@ +import { ImageResponse } from 'next/og'; + +export const size = { + width: 32, + height: 32, +}; +export const contentType = 'image/png'; + +export default function Icon() { + return new ImageResponse( + ( +
+ H +
+ ), + { ...size } + ); +} \ No newline at end of file