openfree commited on
Commit
2e4665e
·
verified ·
1 Parent(s): 4d6fd2e

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +189 -24
index.html CHANGED
@@ -260,22 +260,118 @@
260
  left: 100%;
261
  }
262
 
263
- /* Iframe styles */
264
- .iframe-container {
265
  background: rgba(255, 255, 255, 0.95);
266
  border-radius: 20px;
267
- padding: 20px;
268
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
269
  backdrop-filter: blur(10px);
270
- height: calc(100vh - 200px);
271
- min-height: 600px;
 
 
 
 
 
 
 
 
 
 
 
 
272
  }
273
 
274
- .iframe-container iframe {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
275
  width: 100%;
276
- height: 100%;
277
- border: none;
278
- border-radius: 12px;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
279
  }
280
 
281
  /* Footer */
@@ -362,6 +458,10 @@
362
  .container {
363
  padding-top: 180px;
364
  }
 
 
 
 
365
  }
366
  </style>
367
  </head>
@@ -375,6 +475,7 @@
375
  <a href="#heatmap" class="tab" data-tab="heatmap">히트맵 리더보드</a>
376
  <a href="#korean" class="tab" data-tab="korean">코리안 리더보드</a>
377
  <a href="#best" class="tab" data-tab="best">베스트 AI</a>
 
378
  </div>
379
  </div>
380
  <div class="powered-by">Powered by 비드래프트</div>
@@ -413,31 +514,95 @@
413
 
414
  <!-- Heatmap Leaderboard Tab -->
415
  <div id="heatmap" class="tab-content">
416
- <div class="iframe-container">
417
- <iframe src="https://huggingface.co/spaces/aiqtech/Heatmap-Leaderboard"
418
- title="히트맵 리더보드"
419
- allowfullscreen>
420
- </iframe>
 
 
421
  </div>
422
  </div>
423
 
424
  <!-- Korean Leaderboard Tab -->
425
  <div id="korean" class="tab-content">
426
- <div class="iframe-container">
427
- <iframe src="https://huggingface.co/spaces/openfree/Korean-Leaderboard"
428
- title="코리안 리더보드"
429
- allowfullscreen>
430
- </iframe>
 
 
431
  </div>
432
  </div>
433
 
434
  <!-- Best AI Tab -->
435
  <div id="best" class="tab-content">
436
- <div class="iframe-container">
437
- <iframe src="https://huggingface.co/spaces/openfree/Best-AI"
438
- title="베스트 AI"
439
- allowfullscreen>
440
- </iframe>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
441
  </div>
442
  </div>
443
  </div>
 
260
  left: 100%;
261
  }
262
 
263
+ /* External link container */
264
+ .external-container {
265
  background: rgba(255, 255, 255, 0.95);
266
  border-radius: 20px;
267
+ padding: 40px;
268
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
269
  backdrop-filter: blur(10px);
270
+ text-align: center;
271
+ }
272
+
273
+ .external-container h2 {
274
+ color: #333;
275
+ font-size: 28px;
276
+ margin-bottom: 20px;
277
+ }
278
+
279
+ .external-container p {
280
+ color: #666;
281
+ font-size: 16px;
282
+ margin-bottom: 30px;
283
+ line-height: 1.6;
284
  }
285
 
286
+ .external-link {
287
+ display: inline-block;
288
+ color: #1976D2;
289
+ background: white;
290
+ padding: 14px 30px;
291
+ border-radius: 30px;
292
+ text-decoration: none;
293
+ font-weight: 600;
294
+ box-shadow: 0 4px 15px rgba(0,0,0,0.1);
295
+ transition: all 0.3s;
296
+ }
297
+
298
+ .external-link:hover {
299
+ transform: translateY(-2px);
300
+ box-shadow: 0 6px 20px rgba(0,0,0,0.15);
301
+ }
302
+
303
+ /* News section styles */
304
+ .news-container {
305
+ display: grid;
306
+ grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
307
+ gap: 30px;
308
+ margin-top: 40px;
309
+ }
310
+
311
+ .news-card {
312
+ background: rgba(255, 255, 255, 0.95);
313
+ border-radius: 16px;
314
+ overflow: hidden;
315
+ box-shadow: 0 10px 30px rgba(0,0,0,0.2);
316
+ transition: all 0.3s;
317
+ cursor: pointer;
318
+ }
319
+
320
+ .news-card:hover {
321
+ transform: translateY(-5px);
322
+ box-shadow: 0 15px 40px rgba(0,0,0,0.25);
323
+ }
324
+
325
+ .news-thumbnail {
326
  width: 100%;
327
+ height: 200px;
328
+ background-size: cover;
329
+ background-position: center;
330
+ position: relative;
331
+ overflow: hidden;
332
+ }
333
+
334
+ .news-thumbnail::after {
335
+ content: '';
336
+ position: absolute;
337
+ top: 0;
338
+ left: 0;
339
+ right: 0;
340
+ bottom: 0;
341
+ background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.5) 100%);
342
+ }
343
+
344
+ .news-content {
345
+ padding: 25px;
346
+ }
347
+
348
+ .news-title {
349
+ font-size: 20px;
350
+ font-weight: 700;
351
+ color: #333;
352
+ margin-bottom: 10px;
353
+ line-height: 1.4;
354
+ }
355
+
356
+ .news-description {
357
+ font-size: 14px;
358
+ color: #666;
359
+ line-height: 1.6;
360
+ margin-bottom: 15px;
361
+ }
362
+
363
+ .news-source {
364
+ font-size: 12px;
365
+ color: #999;
366
+ display: flex;
367
+ align-items: center;
368
+ gap: 5px;
369
+ }
370
+
371
+ .news-link {
372
+ text-decoration: none;
373
+ color: inherit;
374
+ display: block;
375
  }
376
 
377
  /* Footer */
 
458
  .container {
459
  padding-top: 180px;
460
  }
461
+
462
+ .news-container {
463
+ grid-template-columns: 1fr;
464
+ }
465
  }
466
  </style>
467
  </head>
 
475
  <a href="#heatmap" class="tab" data-tab="heatmap">히트맵 리더보드</a>
476
  <a href="#korean" class="tab" data-tab="korean">코리안 리더보드</a>
477
  <a href="#best" class="tab" data-tab="best">베스트 AI</a>
478
+ <a href="#news" class="tab" data-tab="news">News</a>
479
  </div>
480
  </div>
481
  <div class="powered-by">Powered by 비드래프트</div>
 
514
 
515
  <!-- Heatmap Leaderboard Tab -->
516
  <div id="heatmap" class="tab-content">
517
+ <div class="external-container">
518
+ <h2>🔥 히트맵 리더보드</h2>
519
+ <p>AI 모델들의 성능을 히트맵으로 시각화하여 비교할 수 있는 리더보드입니다.<br>
520
+ 다양한 벤치마크에서의 성능을 한눈에 확인해보세요.</p>
521
+ <a href="https://huggingface.co/spaces/aiqtech/Heatmap-Leaderboard" target="_blank" class="external-link">
522
+ 히트맵 리더보드 바로가기 →
523
+ </a>
524
  </div>
525
  </div>
526
 
527
  <!-- Korean Leaderboard Tab -->
528
  <div id="korean" class="tab-content">
529
+ <div class="external-container">
530
+ <h2>🇰🇷 코리안 리더보드</h2>
531
+ <p>한국어 AI 모델들의 성능을 평가하고 비교하는 리더보드입니다.<br>
532
+ 한국어 처리 능력에 특화된 모델들의 순위를 확인해보세요.</p>
533
+ <a href="https://huggingface.co/spaces/openfree/Korean-Leaderboard" target="_blank" class="external-link">
534
+ 코리안 리더보드 바로가기 →
535
+ </a>
536
  </div>
537
  </div>
538
 
539
  <!-- Best AI Tab -->
540
  <div id="best" class="tab-content">
541
+ <div class="external-container">
542
+ <h2>🏆 베스트 AI</h2>
543
+ <p>다양한 카테고리별 최고의 AI 모델들을 소개합니다.<br>
544
+ 각 분야에서 뛰어난 성능을 보이는 AI들을 만나보세요.</p>
545
+ <a href="https://huggingface.co/spaces/openfree/Best-AI" target="_blank" class="external-link">
546
+ 베스트 AI 바로가기 →
547
+ </a>
548
+ </div>
549
+ </div>
550
+
551
+ <!-- News Tab -->
552
+ <div id="news" class="tab-content">
553
+ <header class="header">
554
+ <h1>📰 AI News</h1>
555
+ <p>한국 AI 커뮤니티의 최신 소식과 인사이트</p>
556
+ </header>
557
+
558
+ <div class="news-container">
559
+ <!-- News Card 1 -->
560
+ <div class="news-card">
561
+ <a href="https://zdnet.co.kr/view/?no=20241130181300" target="_blank" class="news-link">
562
+ <div class="news-thumbnail" style="background-image: linear-gradient(135deg, #667eea 0%, #764ba2 100%);">
563
+ </div>
564
+ <div class="news-content">
565
+ <h3 class="news-title">AI 기술의 최신 동향과 미래 전망</h3>
566
+ <p class="news-description">인공지능 기술이 빠르게 발전하면서 산업 전반에 걸친 혁신이 가속화되고 있습니다. 최신 AI 트렌드와 기술 발전 현황을 살펴봅니다.</p>
567
+ <div class="news-source">
568
+ <span>📍</span>
569
+ <span>ZDNet Korea</span>
570
+ </div>
571
+ </div>
572
+ </a>
573
+ </div>
574
+
575
+ <!-- News Card 2 -->
576
+ <div class="news-card">
577
+ <a href="http://koreanjournal.net/gameit/9866" target="_blank" class="news-link">
578
+ <div class="news-thumbnail" style="background-image: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);">
579
+ </div>
580
+ <div class="news-content">
581
+ <h3 class="news-title">게임 산업에서의 AI 활용 사례</h3>
582
+ <p class="news-description">게임 개발과 운영에 AI 기술이 어떻게 적용되고 있는지, 그리고 앞으로의 발전 방향에 대해 알아봅니다.</p>
583
+ <div class="news-source">
584
+ <span>📍</span>
585
+ <span>Korean Journal</span>
586
+ </div>
587
+ </div>
588
+ </a>
589
+ </div>
590
+
591
+ <!-- News Card 3 -->
592
+ <div class="news-card">
593
+ <a href="https://brunch.co.kr/@seawolf/30" target="_blank" class="news-link">
594
+ <div class="news-thumbnail" style="background-image: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);">
595
+ </div>
596
+ <div class="news-content">
597
+ <h3 class="news-title">AI 시대의 창업과 비즈니스 전략</h3>
598
+ <p class="news-description">AI 기술을 활용한 스타트업의 성공 사례와 비즈니스 모델 혁신에 대한 인사이트를 공유합니다.</p>
599
+ <div class="news-source">
600
+ <span>📍</span>
601
+ <span>Brunch</span>
602
+ </div>
603
+ </div>
604
+ </a>
605
+ </div>
606
  </div>
607
  </div>
608
  </div>