diff --git a/app/icon.tsx b/app/icon.tsx new file mode 100644 index 0000000..c0f6045 --- /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( + ( +
+ 🦞 +
+ ), + { + ...size, + }, + ); +} diff --git a/app/sidebar.tsx b/app/sidebar.tsx index a5dcfbd..fe52585 100644 --- a/app/sidebar.tsx +++ b/app/sidebar.tsx @@ -47,7 +47,7 @@ export function Sidebar() { {collapsed ? (
- 🐾 + 🦞