Update src/pages/index.tsx
Browse files- src/pages/index.tsx +16 -16
src/pages/index.tsx
CHANGED
@@ -14,23 +14,23 @@ import OrganizationCard from "../components/OrganizationCard";
|
|
14 |
import { getRankingBadge } from "../utils/ranking";
|
15 |
|
16 |
const PROVIDERS: ProviderInfo[] = [
|
17 |
-
{ color: "#
|
18 |
-
{ color: "#
|
19 |
-
{ color: "#
|
20 |
-
{ color: "#
|
21 |
-
{ color: "#
|
22 |
-
{ color: "#
|
23 |
-
{ color: "#
|
24 |
-
{ color: "#
|
25 |
-
{ color: "#
|
26 |
-
{ color: "#
|
27 |
-
{ color: "#
|
28 |
-
{ color: "#
|
29 |
-
{ color: "#
|
30 |
-
{ color: "#
|
31 |
-
{ color: "#
|
32 |
];
|
33 |
-
|
34 |
export async function getStaticProps() {
|
35 |
try {
|
36 |
const allAuthors = PROVIDERS.flatMap(({ authors }) => authors);
|
|
|
14 |
import { getRankingBadge } from "../utils/ranking";
|
15 |
|
16 |
const PROVIDERS: ProviderInfo[] = [
|
17 |
+
{ color: "#E91E63", authors: ["Baidu"] },
|
18 |
+
{ color: "#00BCD4", authors: ["Tencent"] },
|
19 |
+
{ color: "#FFD700", authors: ["BAAI"] },
|
20 |
+
{ color: "#DC143C", authors: ["Shanghai AI lab"] },
|
21 |
+
{ color: "#FF4500", authors: ["Skywork"] },
|
22 |
+
{ color: "#556B2F", authors: ["MiniMax"] },
|
23 |
+
{ color: "#7FFFD4", authors: ["StepFun"] },
|
24 |
+
{ color: "#FF6347", authors: ["Bytedance"] },
|
25 |
+
{ color: "#9C27B0", authors: ["OpenBMB"] },
|
26 |
+
{ color: "#607D8B", authors: ["THUDM"] },
|
27 |
+
{ color: "#3F51B5", authors: ["Rednote-hilab"] },
|
28 |
+
{ color: "#DC143C", authors: ["Deepseek"] },
|
29 |
+
{ color: "#FF4500", authors: ["Qwen"] },
|
30 |
+
{ color: "#009688", authors: ["XiaomiMimo"] },
|
31 |
+
{ color: "#8BC34A", authors: ["BiliBili-Indexteam"] },
|
32 |
];
|
33 |
+
|
34 |
export async function getStaticProps() {
|
35 |
try {
|
36 |
const allAuthors = PROVIDERS.flatMap(({ authors }) => authors);
|