Spaces:
Running
Running
Update index.html
Browse files- index.html +44 -3
index.html
CHANGED
|
@@ -341,10 +341,51 @@
|
|
| 341 |
"aiqtech/flxgif": "Image Gen",
|
| 342 |
"aiqtech/imaginpaint": "Image Edit",
|
| 343 |
|
| 344 |
-
|
| 345 |
-
|
| 346 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 347 |
};
|
|
|
|
|
|
|
|
|
|
| 348 |
|
| 349 |
// 3. URL ๋ณํ
|
| 350 |
function transformUrl(url) {
|
|
|
|
| 341 |
"aiqtech/flxgif": "Image Gen",
|
| 342 |
"aiqtech/imaginpaint": "Image Edit",
|
| 343 |
|
| 344 |
+
|
| 345 |
+
const newProjects = [
|
| 346 |
+
"fantos/Panorama",
|
| 347 |
+
"ginigen/Multi-LoRAgen",
|
| 348 |
+
"ginipick/Fashion-Stylegen",
|
| 349 |
+
"ginipick/Time-Stream",
|
| 350 |
+
"ginipick/AccuVision-Diffusion",
|
| 351 |
+
"fantos/Magic-Drawings",
|
| 352 |
+
"ginigen/Lumina-Image-PLUS",
|
| 353 |
+
"fantaxy/fantasy-novel",
|
| 354 |
+
"VIDraft/mouse-webgen",
|
| 355 |
+
"immunobiotech/MUSIC-Jukebox"
|
| 356 |
+
];
|
| 357 |
+
|
| 358 |
+
const bestProjects = [
|
| 359 |
+
"ginigen/canvas-studio",
|
| 360 |
+
"ginipick/Time-Stream",
|
| 361 |
+
"ginipick/AccuVision-Diffusion",
|
| 362 |
+
"fantos/Magic-Drawings",
|
| 363 |
+
"ginigen/Lumina-Image-PLUS",
|
| 364 |
+
"fantaxy/fantasy-novel",
|
| 365 |
+
"VIDraft/mouse-webgen",
|
| 366 |
+
"immunobiotech/MUSIC-Jukebox",
|
| 367 |
+
"seawolf2357/Flowise-AI",
|
| 368 |
+
"ginigen/Flux-LayerDiffuse"
|
| 369 |
+
];
|
| 370 |
+
|
| 371 |
+
// ํ๋ก์ ํธ ๋ฐฐ์ด ์์ฑ ๋ถ๋ถ ์์
|
| 372 |
+
const keys = Object.keys(projectList);
|
| 373 |
+
const projects = keys.map(key => {
|
| 374 |
+
const primaryCategory = customCategories[key] || "Image Gen";
|
| 375 |
+
let categories = [primaryCategory];
|
| 376 |
+
|
| 377 |
+
// NEW์ BEST ์นดํ
๊ณ ๋ฆฌ ์ถ๊ฐ
|
| 378 |
+
if (newProjects.includes(key)) categories.push("NEW");
|
| 379 |
+
if (bestProjects.includes(key)) categories.push("BEST");
|
| 380 |
+
|
| 381 |
+
return {
|
| 382 |
+
name: primaryCategory + "/" + key.split("/")[1],
|
| 383 |
+
url: transformUrl(projectList[key]),
|
| 384 |
+
categories: categories
|
| 385 |
};
|
| 386 |
+
});
|
| 387 |
+
|
| 388 |
+
|
| 389 |
|
| 390 |
// 3. URL ๋ณํ
|
| 391 |
function transformUrl(url) {
|