Xianbao QIAN
commited on
Commit
·
43afbff
1
Parent(s):
36cdaba
add map
Browse files- src/pages/index.tsx +9 -8
src/pages/index.tsx
CHANGED
@@ -21,15 +21,16 @@ interface Activity {
|
|
21 |
export default function Home() {
|
22 |
const [calendarData, setCalendarData] = useState<Record<string, Activity[]>>({});
|
23 |
const [isLoading, setIsLoading] = useState(true);
|
24 |
-
|
25 |
const PROVIDERS_MAP: Record<string, { color: string; authors: string[] }> = {
|
26 |
-
"BAAI": { color: "#FF7000", authors: ["BAAI"] }, // Vibrant Orange
|
27 |
-
"DeepSeek": { color: "#1877F2", authors: ["deepseek-ai"] }, //
|
28 |
-
"Shanghai AI Lab": { color: "#10A37F", authors: ["internlm", "OpenGVLab", "openmmlab"] }, // Fresh Green
|
29 |
-
"Alibaba": { color: "#FF6F00", authors: ["Qwen", "Alibaba-NLP", "alibaba-pai", "DAMO-NLP-SG"] }, // Bright Orange
|
30 |
-
"GLM": { color: "#4285F4", authors: ["THUDM"] }, // Classic Blue
|
31 |
-
"Tencent": { color: "#1DA1F2", authors: ["TencentARC", "Tencent-Hunyuan"] }, // Twitter Blue
|
32 |
-
"Yi/01": { color: "#FF4500", authors: ["01-ai"] }, // Orange-Red
|
|
|
33 |
}
|
34 |
|
35 |
const generateCalendarData = (modelData: ModelData[]) => {
|
|
|
21 |
export default function Home() {
|
22 |
const [calendarData, setCalendarData] = useState<Record<string, Activity[]>>({});
|
23 |
const [isLoading, setIsLoading] = useState(true);
|
24 |
+
|
25 |
const PROVIDERS_MAP: Record<string, { color: string; authors: string[] }> = {
|
26 |
+
"BAAI": { color: "#FF7000", authors: ["BAAI"] }, // Vibrant Orange
|
27 |
+
"DeepSeek": { color: "#1877F2", authors: ["deepseek-ai"] }, // Meta's Blue
|
28 |
+
"Shanghai AI Lab": { color: "#10A37F", authors: ["internlm", "OpenGVLab", "openmmlab"] }, // Fresh Green
|
29 |
+
"Alibaba": { color: "#FF6F00", authors: ["Qwen", "Alibaba-NLP", "alibaba-pai", "DAMO-NLP-SG"] }, // Bright Orange
|
30 |
+
"GLM": { color: "#4285F4", authors: ["THUDM"] }, // Classic Blue
|
31 |
+
"Tencent": { color: "#1DA1F2", authors: ["TencentARC", "Tencent-Hunyuan"] }, // Twitter Blue
|
32 |
+
"Yi/01": { color: "#FF4500", authors: ["01-ai"] }, // Orange-Red
|
33 |
+
"Multimodal Art Projection (m-a-p)": { color: "#5E35B1", authors: ["m-a-p"] } // Dark Purple, with gradient from Very Light Purple to Dark Purple
|
34 |
}
|
35 |
|
36 |
const generateCalendarData = (modelData: ModelData[]) => {
|