diff --git a/app/icon.tsx b/app/icon.tsx new file mode 100644 index 0000000..bfd66aa --- /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