Update app/icon.tsx

This commit is contained in:
kleap-admin 2026-01-18 17:33:45 +00:00
parent 8ff5ea2e4b
commit 3d4fb399f7
1 changed files with 30 additions and 0 deletions

30
app/icon.tsx Normal file
View File

@ -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(
(
<div
style={{
fontSize: 24,
background: "linear-gradient(90deg, #f59e0b 0%, #d97706 100%)",
width: "100%",
height: "100%",
display: "flex",
alignItems: "center",
justifyContent: "center",
color: "white",
borderRadius: "50%",
}}
>
</div>
),
{ ...size },
);
}