openfree commited on
Commit
20ed127
·
verified ·
1 Parent(s): 14e735d

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +221 -39
index.html CHANGED
@@ -3,7 +3,7 @@
3
  <head>
4
  <meta charset="UTF-8">
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
- <title>K-AI 커뮤니티 서밋 2025</title>
7
  <style>
8
  * {
9
  margin: 0;
@@ -19,6 +19,70 @@
19
  overflow-x: hidden;
20
  }
21
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
22
  /* Animated background particles */
23
  .particles {
24
  position: fixed;
@@ -60,13 +124,32 @@
60
  z-index: 10;
61
  max-width: 1200px;
62
  margin: 0 auto;
63
- padding: 60px 20px;
64
  min-height: 100vh;
65
  display: flex;
66
  flex-direction: column;
67
  }
68
 
69
- /* Header */
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
70
  .header {
71
  text-align: center;
72
  margin-bottom: 50px;
@@ -87,7 +170,6 @@
87
  font-weight: 300;
88
  }
89
 
90
- /* Content section */
91
  .content {
92
  flex: 1;
93
  display: flex;
@@ -178,28 +260,35 @@
178
  left: 100%;
179
  }
180
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
181
  /* Footer */
182
  .footer {
183
  background: rgba(0, 0, 0, 0.3);
184
  backdrop-filter: blur(10px);
185
- padding: 30px 20px;
186
  text-align: center;
187
  color: rgba(255, 255, 255, 0.8);
188
  font-size: 13px;
189
- line-height: 1.8;
190
  margin-top: auto;
191
  }
192
 
193
- .footer-info {
194
- max-width: 600px;
195
- margin: 0 auto;
196
- }
197
-
198
- .footer-info span {
199
- display: inline-block;
200
- margin: 0 10px;
201
- }
202
-
203
  /* Animations */
204
  @keyframes fadeInDown {
205
  from {
@@ -225,6 +314,34 @@
225
 
226
  /* Responsive */
227
  @media (max-width: 768px) {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
228
  .header h1 {
229
  font-size: 36px;
230
  }
@@ -242,14 +359,27 @@
242
  padding: 16px 32px;
243
  }
244
 
245
- .footer-info span {
246
- display: block;
247
- margin: 5px 0;
248
  }
249
  }
250
  </style>
251
  </head>
252
  <body>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
253
  <!-- Animated particles background -->
254
  <div class="particles">
255
  <div class="particle" style="width: 80px; height: 80px; left: 10%; animation-delay: 0s;"></div>
@@ -262,36 +392,88 @@
262
  </div>
263
 
264
  <div class="container">
265
- <!-- Header -->
266
- <header class="header">
267
- <h1>K-AI 커뮤니티 서밋 2025</h1>
268
- <p>한국 AI 미래를 함께 만들어갑니다</p>
269
- </header>
270
-
271
- <!-- Main content -->
272
- <main class="content">
273
- <div class="poster-container">
274
- <img src="image.png" alt="K-AI 커뮤니티 서밋 2025 포스터" class="poster">
275
- <div class="cta-section">
276
- <a href="https://onoffmix.com/event/325919" target="_blank" class="apply-btn">
277
- 📌 행사 참가 신청하기
278
- </a>
 
279
  </div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
280
  </div>
281
- </main>
282
  </div>
283
 
284
  <!-- Footer -->
285
  <footer class="footer">
286
  <div class="footer-info">
287
- <span>(주) 비드래프트</span>
288
- <span>대표 김민식</span><br>
289
- <span>주소: 서울특별시 강남구 학동로 165</span><br>
290
- <span>사업자 등록번호: 879-87-03063</span>
291
  </div>
292
  </footer>
293
 
294
  <script>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
295
  // Add dynamic particles on mouse move
296
  document.addEventListener('mousemove', (e) => {
297
  if (Math.random() > 0.95) {
@@ -309,4 +491,4 @@
309
  });
310
  </script>
311
  </body>
312
- </html>
 
3
  <head>
4
  <meta charset="UTF-8">
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>K-AI 커뮤니티 허브</title>
7
  <style>
8
  * {
9
  margin: 0;
 
19
  overflow-x: hidden;
20
  }
21
 
22
+ /* Navigation */
23
+ .nav-container {
24
+ position: fixed;
25
+ top: 0;
26
+ left: 0;
27
+ right: 0;
28
+ background: rgba(0, 0, 0, 0.3);
29
+ backdrop-filter: blur(10px);
30
+ z-index: 1000;
31
+ padding: 20px 40px;
32
+ display: flex;
33
+ justify-content: space-between;
34
+ align-items: center;
35
+ }
36
+
37
+ .nav-left {
38
+ display: flex;
39
+ align-items: center;
40
+ gap: 40px;
41
+ }
42
+
43
+ .home-btn {
44
+ color: white;
45
+ text-decoration: none;
46
+ font-size: 18px;
47
+ font-weight: 600;
48
+ transition: opacity 0.3s;
49
+ }
50
+
51
+ .home-btn:hover {
52
+ opacity: 0.8;
53
+ }
54
+
55
+ .tabs {
56
+ display: flex;
57
+ gap: 30px;
58
+ }
59
+
60
+ .tab {
61
+ color: rgba(255, 255, 255, 0.8);
62
+ text-decoration: none;
63
+ font-size: 16px;
64
+ font-weight: 500;
65
+ padding: 8px 16px;
66
+ border-radius: 20px;
67
+ transition: all 0.3s;
68
+ cursor: pointer;
69
+ }
70
+
71
+ .tab:hover {
72
+ background: rgba(255, 255, 255, 0.1);
73
+ color: white;
74
+ }
75
+
76
+ .tab.active {
77
+ background: rgba(255, 255, 255, 0.2);
78
+ color: white;
79
+ }
80
+
81
+ .powered-by {
82
+ color: rgba(255, 255, 255, 0.7);
83
+ font-size: 13px;
84
+ }
85
+
86
  /* Animated background particles */
87
  .particles {
88
  position: fixed;
 
124
  z-index: 10;
125
  max-width: 1200px;
126
  margin: 0 auto;
127
+ padding: 120px 20px 60px;
128
  min-height: 100vh;
129
  display: flex;
130
  flex-direction: column;
131
  }
132
 
133
+ /* Tab content */
134
+ .tab-content {
135
+ display: none;
136
+ animation: fadeIn 0.5s ease-out;
137
+ }
138
+
139
+ .tab-content.active {
140
+ display: block;
141
+ }
142
+
143
+ @keyframes fadeIn {
144
+ from {
145
+ opacity: 0;
146
+ }
147
+ to {
148
+ opacity: 1;
149
+ }
150
+ }
151
+
152
+ /* Home tab styles */
153
  .header {
154
  text-align: center;
155
  margin-bottom: 50px;
 
170
  font-weight: 300;
171
  }
172
 
 
173
  .content {
174
  flex: 1;
175
  display: flex;
 
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 */
282
  .footer {
283
  background: rgba(0, 0, 0, 0.3);
284
  backdrop-filter: blur(10px);
285
+ padding: 20px;
286
  text-align: center;
287
  color: rgba(255, 255, 255, 0.8);
288
  font-size: 13px;
 
289
  margin-top: auto;
290
  }
291
 
 
 
 
 
 
 
 
 
 
 
292
  /* Animations */
293
  @keyframes fadeInDown {
294
  from {
 
314
 
315
  /* Responsive */
316
  @media (max-width: 768px) {
317
+ .nav-container {
318
+ padding: 15px 20px;
319
+ flex-direction: column;
320
+ gap: 15px;
321
+ }
322
+
323
+ .nav-left {
324
+ flex-direction: column;
325
+ gap: 15px;
326
+ width: 100%;
327
+ }
328
+
329
+ .tabs {
330
+ width: 100%;
331
+ justify-content: center;
332
+ flex-wrap: wrap;
333
+ gap: 10px;
334
+ }
335
+
336
+ .tab {
337
+ font-size: 14px;
338
+ padding: 6px 12px;
339
+ }
340
+
341
+ .powered-by {
342
+ font-size: 11px;
343
+ }
344
+
345
  .header h1 {
346
  font-size: 36px;
347
  }
 
359
  padding: 16px 32px;
360
  }
361
 
362
+ .container {
363
+ padding-top: 180px;
 
364
  }
365
  }
366
  </style>
367
  </head>
368
  <body>
369
+ <!-- Navigation -->
370
+ <nav class="nav-container">
371
+ <div class="nav-left">
372
+ <a href="#" class="home-btn">HOME</a>
373
+ <div class="tabs">
374
+ <a href="#home" class="tab active" data-tab="home">K-AI 커뮤니티 서밋 2025</a>
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>
381
+ </nav>
382
+
383
  <!-- Animated particles background -->
384
  <div class="particles">
385
  <div class="particle" style="width: 80px; height: 80px; left: 10%; animation-delay: 0s;"></div>
 
392
  </div>
393
 
394
  <div class="container">
395
+ <!-- Home Tab -->
396
+ <div id="home" class="tab-content active">
397
+ <header class="header">
398
+ <h1>K-AI 커뮤니티 허브</h1>
399
+ <p>한국 AI의 미래를 함께 만들어갑니다</p>
400
+ </header>
401
+
402
+ <main class="content">
403
+ <div class="poster-container">
404
+ <img src="image.png" alt="K-AI 커뮤니티 서밋 2025 포스터" class="poster">
405
+ <div class="cta-section">
406
+ <a href="https://onoffmix.com/event/325919" target="_blank" class="apply-btn">
407
+ 📌 행사 참가 신청하기
408
+ </a>
409
+ </div>
410
  </div>
411
+ </main>
412
+ </div>
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>
444
 
445
  <!-- Footer -->
446
  <footer class="footer">
447
  <div class="footer-info">
448
+ (주) 비드래프트 | 대표 김민식 | 주소: 서울특별시 강남구 학동로 165 | 사업자 등록번호: 879-87-03063
 
 
 
449
  </div>
450
  </footer>
451
 
452
  <script>
453
+ // Tab switching functionality
454
+ document.querySelectorAll('.tab').forEach(tab => {
455
+ tab.addEventListener('click', (e) => {
456
+ e.preventDefault();
457
+ const targetTab = tab.getAttribute('data-tab');
458
+
459
+ // Update active tab
460
+ document.querySelectorAll('.tab').forEach(t => t.classList.remove('active'));
461
+ tab.classList.add('active');
462
+
463
+ // Show corresponding content
464
+ document.querySelectorAll('.tab-content').forEach(content => {
465
+ content.classList.remove('active');
466
+ });
467
+ document.getElementById(targetTab).classList.add('active');
468
+ });
469
+ });
470
+
471
+ // Home button functionality
472
+ document.querySelector('.home-btn').addEventListener('click', (e) => {
473
+ e.preventDefault();
474
+ document.querySelector('.tab[data-tab="home"]').click();
475
+ });
476
+
477
  // Add dynamic particles on mouse move
478
  document.addEventListener('mousemove', (e) => {
479
  if (Math.random() > 0.95) {
 
491
  });
492
  </script>
493
  </body>
494
+ </html>