This commit is contained in:
richarjiang
2026-03-13 11:00:01 +08:00
commit fa4c458eda
51 changed files with 8843 additions and 0 deletions

26
app/apple-icon.tsx Normal file
View File

@@ -0,0 +1,26 @@
import { ImageResponse } from "next/og";
export const size = { width: 180, height: 180 };
export const contentType = "image/png";
export default function AppleIcon() {
return new ImageResponse(
(
<div
style={{
width: "100%",
height: "100%",
display: "flex",
alignItems: "center",
justifyContent: "center",
background: "linear-gradient(135deg, #0a0e1a 0%, #111827 100%)",
borderRadius: "40px",
fontSize: 120,
}}
>
🦞
</div>
),
{ ...size }
);
}