tenext redesign
This commit is contained in:
29
app/icon.tsx
Normal file
29
app/icon.tsx
Normal file
@@ -0,0 +1,29 @@
|
||||
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 }
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user