30 lines
662 B
TypeScript
30 lines
662 B
TypeScript
import { ImageResponse } from "next/og";
|
|
|
|
// Generated Tenext favicon — replaces the framework's default icon.
|
|
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: "#1F1F1F",
|
|
color: "#45D0BD",
|
|
fontSize: 22,
|
|
fontWeight: 700,
|
|
fontFamily: "sans-serif",
|
|
}}
|
|
>
|
|
T
|
|
</div>
|
|
),
|
|
{ ...size }
|
|
);
|
|
}
|