Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file removed app/favicon.ico
Binary file not shown.
50 changes: 50 additions & 0 deletions app/icon.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
import { ImageResponse } from "next/og";

export const size = { width: 32, height: 32 };
export const contentType = "image/png";

export default function Icon() {
Comment on lines +1 to +6
return new ImageResponse(
<div
style={{
width: 32,
height: 32,
display: "flex",
alignItems: "center",
justifyContent: "center",
color: "#12823B",
}}
>
<svg
viewBox="0 0 48 48"
fill="none"
xmlns="http://www.w3.org/2000/svg"
width={32}
height={32}
>
<path
d="M24 3L6 11V24C6 33.5 14 41.8 24 45C34 41.8 42 33.5 42 24V11L24 3Z"
fill="currentColor"
fillOpacity="0.12"
stroke="currentColor"
strokeWidth="2"
strokeLinejoin="round"
/>
<path
d="M16 14H26C29.3 14 32 16.7 32 20C32 23.3 29.3 26 26 26H20V34"
stroke="currentColor"
strokeWidth="3.5"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M20 14V26"
stroke="currentColor"
strokeWidth="3.5"
strokeLinecap="round"
/>
</svg>
</div>,
{ ...size },
);
}
Loading