diff --git a/components/site-navigation.tsx b/components/site-navigation.tsx index 2d6f840..5326c0d 100644 --- a/components/site-navigation.tsx +++ b/components/site-navigation.tsx @@ -75,7 +75,7 @@ const categories: Category[] = [ { domain: "load.zhuzihan.com", name: "GPT-Load", - server: "华为云", + server: "狐蒂云", cdn: "EdgeOne加速", url: "https://load.zhuzihan.com", }, @@ -141,6 +141,13 @@ const categories: Category[] = [ cdn: "无加速", 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("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("狐蒂")) return "bg-pink-500/20 text-pink-400" return "bg-muted text-muted-foreground" }