diff --git a/app/apple-icon.tsx b/app/apple-icon.tsx new file mode 100644 index 0000000..f88416a --- /dev/null +++ b/app/apple-icon.tsx @@ -0,0 +1,30 @@ +import { ImageResponse } from "next/og"; + +export const size = { width: 180, height: 180 }; +export const contentType = "image/png"; + +export default function AppleIcon() { + return new ImageResponse( + ( +
+
+
+
+
+
+
+
+ ), + { ...size } + ); +} diff --git a/app/icon.svg b/app/icon.svg new file mode 100644 index 0000000..2d02fec --- /dev/null +++ b/app/icon.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/config/home.config.ts b/config/home.config.ts index 8c7a7ea..0efe02a 100644 --- a/config/home.config.ts +++ b/config/home.config.ts @@ -57,7 +57,7 @@ export const PAST_SESSIONS = [ /** 发起人 - 点击跳转小红书 */ export const HOSTS = [ - { id: "host-1", name: "发起人", avatar: "/images/11.webp", bio: "数字游民社区发起人,热爱连接同频的人。", link: "https://xhslink.com/m/9H50QYiVOVx" }, + { id: "host-1", name: "发起人", avatar: "/images/11.webp", bio: "数字游民社区发起人,热爱连接同频的人。", link: "https://xhslink.com/m/2GxEJ4eeTNS" }, { id: "host-2", name: "志愿者", avatar: "/images/volunteer-mystery.svg", bio: "签到、茶歇准备、拍照摄像。", link: "/join?volunteer=1" }, ];