-
-
-
-
@@ -53,20 +75,24 @@ export default async function SponsorsPage({ params }: { params: Promise<{ lang:
-
-
-
-
- {t.sponsorAction}
-
+ {t.sponsorLabel}
-{t.sponsorDesc}
-{t.sponsorLabel}
+
+ {sponsorItems.map((sponsor) => (
+
diff --git a/docs/app/[lang]/sponsors/page.tsx b/docs/app/[lang]/sponsors/page.tsx
index ca6004a18..e5119e357 100644
--- a/docs/app/[lang]/sponsors/page.tsx
+++ b/docs/app/[lang]/sponsors/page.tsx
@@ -8,8 +8,10 @@ const i18n = {
en: {
title: "Sponsors & Partners",
desc: "Thank you to the sponsors and partners supporting DBX through funding, resources, services, and collaboration.",
- sponsorDesc: "RainYun is a cloud service provider offering cloud servers, physical servers, game hosting, and developer-friendly infrastructure services.",
- sponsorAction: "Visit RainYun",
+ qiniuSponsorDesc: "Qiniu Cloud provides DBX with object storage, CDN, and other cloud infrastructure resources.",
+ qiniuSponsorAction: "Visit Qiniu Cloud",
+ rainyunSponsorDesc: "RainYun is a cloud service provider offering cloud servers, physical servers, game hosting, and developer-friendly infrastructure services.",
+ rainyunSponsorAction: "Visit RainYun",
becomeTitle: "Support DBX",
becomeDesc: "Financial sponsorship, infrastructure, developer tools, services, and other forms of support are all welcome from individuals and organizations.",
becomeContact: "QQ: 86554840",
@@ -18,8 +20,10 @@ const i18n = {
cn: {
title: "赞助商与合作伙伴",
desc: "感谢赞助商与合作伙伴通过资金、资源、服务和协作等方式支持 DBX 持续发展。",
- sponsorDesc: "雨云是面向开发者和站长的云服务提供商,提供云服务器、物理服务器、游戏云和配套基础设施服务。",
- sponsorAction: "访问雨云",
+ qiniuSponsorDesc: "七牛云为 DBX 提供对象存储、CDN 等云基础设施资源支持。",
+ qiniuSponsorAction: "访问七牛云",
+ rainyunSponsorDesc: "雨云是面向开发者和站长的云服务提供商,提供云服务器、物理服务器、游戏云和配套基础设施服务。",
+ rainyunSponsorAction: "访问雨云",
becomeTitle: "支持 DBX",
becomeDesc: "无论是个人还是团队,资金赞助、基础设施、开发工具、服务资源或其他形式的支持都十分欢迎。",
becomeContact: "QQ:86554840",
@@ -44,6 +48,24 @@ export default async function SponsorsPage({ params }: { params: Promise<{ lang:
const { lang } = await params;
const locale = lang === "cn" ? "cn" : "en";
const t = i18n[locale];
+ const sponsorItems = [
+ {
+ name: "RainYun",
+ href: "https://www.rainyun.com/MTE5Mjc4Ng==_",
+ logo: "https://www.rainyun.com/img/logo.d193755d.png",
+ logoClass: "h-12 w-auto max-w-[150px]",
+ description: t.rainyunSponsorDesc,
+ action: t.rainyunSponsorAction,
+ },
+ {
+ name: locale === "cn" ? "七牛云" : "Qiniu Cloud",
+ href: "https://www.qiniu.com/",
+ logo: "https://www-static.qbox.me/_next/static/media/logo.0fc18feaa621d2068a7180631f742256.jpg",
+ logoClass: "h-16 w-16 object-contain",
+ description: t.qiniuSponsorDesc,
+ action: t.qiniuSponsorAction,
+ },
+ ];
return (
+
+
+
+
+ ))}
+
+ {sponsor.name}
+{sponsor.description}
+ + {sponsor.action} + + +{t.title}
{t.desc}
-
-
-
-
-
-
-
-
-
RainYun
-{t.sponsorDesc}
- - {t.sponsorAction} - - +
+ {sponsorItems.map((sponsor) => (
+
+ ))}
+
-
+
+
+
+
+
+ {sponsor.name}
+{sponsor.description}
+ + {sponsor.action} + + +
+