feat: update server and add new cloud service backend

Modify server for load.zhuzihan.com to FoxCloud and add hdy.zhuzihan.com backend.

#VERCEL_SKIP

Co-authored-by: Simon <85533298+handsomezhuzhu@users.noreply.github.com>
This commit is contained in:
v0
2025-12-28 04:09:16 +00:00
parent f9d2c17719
commit ae17fd4640

View File

@@ -75,7 +75,7 @@ const categories: Category[] = [
{ {
domain: "load.zhuzihan.com", domain: "load.zhuzihan.com",
name: "GPT-Load", name: "GPT-Load",
server: "华为云", server: "狐蒂云",
cdn: "EdgeOne加速", cdn: "EdgeOne加速",
url: "https://load.zhuzihan.com", url: "https://load.zhuzihan.com",
}, },
@@ -141,6 +141,13 @@ const categories: Category[] = [
cdn: "无加速", cdn: "无加速",
url: "https://qzy.zhuzihan.com", url: "https://qzy.zhuzihan.com",
}, },
{
domain: "hdy.zhuzihan.com",
name: "狐蒂云管理后台",
server: "狐蒂云",
cdn: "无加速",
url: "https://hdy.zhuzihan.com",
},
], ],
}, },
{ {
@@ -259,6 +266,7 @@ function getServerBadgeStyle(server: string) {
if (server.includes("GitHub")) return "bg-foreground/10 text-foreground" if (server.includes("GitHub")) return "bg-foreground/10 text-foreground"
if (server.includes("EdgeOne")) return "bg-emerald-500/20 text-emerald-400" if (server.includes("EdgeOne")) return "bg-emerald-500/20 text-emerald-400"
if (server.includes("网易") || server.includes("企业邮箱")) return "bg-red-500/20 text-red-400" if (server.includes("网易") || server.includes("企业邮箱")) return "bg-red-500/20 text-red-400"
if (server.includes("狐蒂")) return "bg-pink-500/20 text-pink-400"
return "bg-muted text-muted-foreground" return "bg-muted text-muted-foreground"
} }