diff --git a/apps/web/app/icon.tsx b/apps/web/app/icon.tsx new file mode 100644 index 00000000..ef4c3112 --- /dev/null +++ b/apps/web/app/icon.tsx @@ -0,0 +1,39 @@ +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, + }, + ); +} diff --git a/apps/web/next-env.d.ts b/apps/web/next-env.d.ts deleted file mode 100644 index 9edff1c7..00000000 --- a/apps/web/next-env.d.ts +++ /dev/null @@ -1,6 +0,0 @@ -/// -/// -import "./.next/types/routes.d.ts"; - -// NOTE: This file should not be edited -// see https://nextjs.org/docs/app/api-reference/config/typescript for more information.