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