Skip to content
Merged
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
39 changes: 39 additions & 0 deletions apps/web/app/icon.tsx
Original file line number Diff line number Diff line change
@@ -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(
<div
style={{
width: "100%",
height: "100%",
display: "flex",
alignItems: "center",
justifyContent: "center",
background: "#ebebeb",
borderRadius: "50%",
}}
>
<svg
width="18"
height="18"
viewBox="0 0 18 18"
xmlns="http://www.w3.org/2000/svg"
aria-label="Music note"
>
<path
d="M13.014,1.162l-3.5,.477h0c-.862,.118-1.513,.864-1.513,1.734v7.262c-.568-.398-1.256-.635-2-.635-1.93,0-3.5,1.57-3.5,3.5s1.57,3.5,3.5,3.5,3.5-1.57,3.5-3.5V6.405l3.987-.543c.862-.118,1.513-.864,1.513-1.734v-1.231c0-.505-.218-.986-.599-1.318-.381-.333-.894-.484-1.387-.416Z"
fill="#8f8f8f"
Comment on lines +29 to +31
/>
Comment on lines +18 to +32
</svg>
</div>,
{
...size,
},
);
}
6 changes: 0 additions & 6 deletions apps/web/next-env.d.ts

This file was deleted.

Loading