openfree commited on
Commit
f1e5dc6
·
verified ·
1 Parent(s): 37b4867

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +354 -0
index.html CHANGED
@@ -356,6 +356,130 @@
356
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
357
  }
358
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
359
  /* News section styles */
360
  .news-container {
361
  display: grid;
@@ -589,6 +713,22 @@
589
  .news-container {
590
  grid-template-columns: 1fr;
591
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
592
  }
593
  </style>
594
  </head>
@@ -600,6 +740,7 @@
600
  <div class="tabs">
601
  <a href="#home" class="tab active" data-tab="home">K-AI 커뮤니티 서밋 2025</a>
602
  <a href="#news" class="tab" data-tab="news">News</a>
 
603
  <a href="#heatmap" class="tab" data-tab="heatmap">히트맵 리더보드</a>
604
  <a href="#korean" class="tab" data-tab="korean">코리안 리더보드</a>
605
  <a href="#best" class="tab" data-tab="best">베스트 AI</a>
@@ -651,6 +792,219 @@
651
  </main>
652
  </div>
653
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
654
  <!-- Heatmap Leaderboard Tab -->
655
  <div id="heatmap" class="tab-content">
656
  <div class="external-container">
 
356
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
357
  }
358
 
359
+ /* Success Stories Styles */
360
+ .success-intro {
361
+ background: rgba(255, 255, 255, 0.95);
362
+ border-radius: 20px;
363
+ padding: 40px;
364
+ margin-bottom: 40px;
365
+ text-align: center;
366
+ box-shadow: 0 20px 60px rgba(0,0,0,0.3);
367
+ animation: fadeInDown 0.8s ease-out;
368
+ }
369
+
370
+ .success-intro h2 {
371
+ color: #333;
372
+ font-size: 36px;
373
+ font-weight: 700;
374
+ margin-bottom: 30px;
375
+ line-height: 1.2;
376
+ }
377
+
378
+ .achievements-grid {
379
+ display: grid;
380
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
381
+ gap: 20px;
382
+ margin-bottom: 40px;
383
+ }
384
+
385
+ .achievement-card {
386
+ background: rgba(255, 255, 255, 0.1);
387
+ border: 1px solid rgba(255, 255, 255, 0.2);
388
+ border-radius: 15px;
389
+ padding: 20px;
390
+ text-align: center;
391
+ transition: all 0.3s;
392
+ }
393
+
394
+ .achievement-card:hover {
395
+ background: rgba(255, 255, 255, 0.2);
396
+ transform: translateY(-5px);
397
+ box-shadow: 0 10px 30px rgba(0,0,0,0.2);
398
+ }
399
+
400
+ .achievement-icon {
401
+ font-size: 36px;
402
+ margin-bottom: 10px;
403
+ }
404
+
405
+ .achievement-text {
406
+ color: white;
407
+ font-size: 14px;
408
+ line-height: 1.5;
409
+ }
410
+
411
+ .achievement-text strong {
412
+ display: block;
413
+ font-size: 16px;
414
+ margin-bottom: 5px;
415
+ }
416
+
417
+ .success-section {
418
+ margin-bottom: 50px;
419
+ }
420
+
421
+ .section-title {
422
+ color: white;
423
+ font-size: 28px;
424
+ font-weight: 600;
425
+ margin-bottom: 30px;
426
+ text-align: center;
427
+ text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
428
+ }
429
+
430
+ .story-cards {
431
+ display: grid;
432
+ grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
433
+ gap: 25px;
434
+ }
435
+
436
+ .story-card {
437
+ background: rgba(255, 255, 255, 0.95);
438
+ border-radius: 16px;
439
+ padding: 30px;
440
+ box-shadow: 0 10px 30px rgba(0,0,0,0.2);
441
+ transition: all 0.3s;
442
+ position: relative;
443
+ overflow: hidden;
444
+ }
445
+
446
+ .story-card::before {
447
+ content: '';
448
+ position: absolute;
449
+ top: 0;
450
+ left: 0;
451
+ width: 5px;
452
+ height: 100%;
453
+ background: linear-gradient(135deg, #667eea, #764ba2);
454
+ }
455
+
456
+ .story-card:hover {
457
+ transform: translateY(-5px);
458
+ box-shadow: 0 15px 40px rgba(0,0,0,0.25);
459
+ }
460
+
461
+ .story-title {
462
+ color: #333;
463
+ font-size: 18px;
464
+ font-weight: 700;
465
+ margin-bottom: 15px;
466
+ display: flex;
467
+ align-items: center;
468
+ gap: 10px;
469
+ }
470
+
471
+ .story-content {
472
+ color: #666;
473
+ font-size: 14px;
474
+ line-height: 1.6;
475
+ font-style: italic;
476
+ }
477
+
478
+ .story-highlight {
479
+ color: #667eea;
480
+ font-weight: 600;
481
+ }
482
+
483
  /* News section styles */
484
  .news-container {
485
  display: grid;
 
713
  .news-container {
714
  grid-template-columns: 1fr;
715
  }
716
+
717
+ .story-cards {
718
+ grid-template-columns: 1fr;
719
+ }
720
+
721
+ .achievements-grid {
722
+ grid-template-columns: 1fr;
723
+ }
724
+
725
+ .success-intro h2 {
726
+ font-size: 28px;
727
+ }
728
+
729
+ .section-title {
730
+ font-size: 24px;
731
+ }
732
  }
733
  </style>
734
  </head>
 
740
  <div class="tabs">
741
  <a href="#home" class="tab active" data-tab="home">K-AI 커뮤니티 서밋 2025</a>
742
  <a href="#news" class="tab" data-tab="news">News</a>
743
+ <a href="#success" class="tab" data-tab="success">OpenFree AI 성과</a>
744
  <a href="#heatmap" class="tab" data-tab="heatmap">히트맵 리더보드</a>
745
  <a href="#korean" class="tab" data-tab="korean">코리안 리더보드</a>
746
  <a href="#best" class="tab" data-tab="best">베스트 AI</a>
 
792
  </main>
793
  </div>
794
 
795
+ <!-- OpenFree AI Success Stories Tab -->
796
+ <div id="success" class="tab-content">
797
+ <header class="header">
798
+ <h1>🌟 OpenFree AI 성과</h1>
799
+ <p>한국이 낳은 글로벌 AI 혁신의 중심</p>
800
+ </header>
801
+
802
+ <div class="success-intro">
803
+ <h2>한국이 낳은 글로벌 AI 혁신의 중심<br>"OpenFree AI" 커뮤니티 그룹</h2>
804
+
805
+ <div class="achievements-grid">
806
+ <div class="achievement-card">
807
+ <div class="achievement-icon">🏆</div>
808
+ <div class="achievement-text">
809
+ <strong>검증된 전문성</strong>
810
+ 경력 20년 이상 석/박사급 인력의 압도적 성과와 노하우
811
+ </div>
812
+ </div>
813
+
814
+ <div class="achievement-card">
815
+ <div class="achievement-icon">🇰🇷</div>
816
+ <div class="achievement-text">
817
+ <strong>한국 최대 AI 커뮤니티</strong>
818
+ 디스코드 서버 및 다수 채널 운영, 참여 멤버 5천명 이상
819
+ </div>
820
+ </div>
821
+
822
+ <div class="achievement-card">
823
+ <div class="achievement-icon">🥈</div>
824
+ <div class="achievement-text">
825
+ <strong>의료 AI 세계 2위</strong>
826
+ 자체 개발 LLM, 구글 딥마인드 'FACTS Grounding Leaderboard' 의료부문
827
+ </div>
828
+ </div>
829
+
830
+ <div class="achievement-card">
831
+ <div class="achievement-icon">🌍</div>
832
+ <div class="achievement-text">
833
+ <strong>글로벌 Top 3</strong>
834
+ 허깅페이스 '히트맵 리더보드' 세계 2~3위 지속 유지
835
+ </div>
836
+ </div>
837
+
838
+ <div class="achievement-card">
839
+ <div class="achievement-icon">🚀</div>
840
+ <div class="achievement-text">
841
+ <strong>1,000개+ 모델 공개</strong>
842
+ 1년만에 1,000개 이상 모델과 스페이스(웹앱) 공개
843
+ </div>
844
+ </div>
845
+
846
+ <div class="achievement-card">
847
+ <div class="achievement-icon">👥</div>
848
+ <div class="achievement-text">
849
+ <strong>1,000만명 돌파</strong>
850
+ 누적 방문자 1,000만명, 월간 활성 사용자 150만 MAU 유지
851
+ </div>
852
+ </div>
853
+ </div>
854
+ </div>
855
+
856
+ <!-- Success Stories Section -->
857
+ <div class="success-section">
858
+ <h2 class="section-title">🏆 글로벌 인정받은 스타트업들</h2>
859
+ <div class="story-cards">
860
+ <div class="story-card">
861
+ <h3 class="story-title">
862
+ <span>🏆</span>
863
+ MS, FLUX와 어깨를 나란히
864
+ </h3>
865
+ <p class="story-content">
866
+ "멀티모달 AI 서비스 대표입니다. 교육 과정을 통해 개발한 서비스가 <span class="story-highlight">2024년 12월 허깅페이스가 선정한 글로벌 'STAR AI' TOP 12</span>에 선정되어 MS, FLUX와 함께 이름을 올렸습니다. 기업가치가 크게 상승했습니다."
867
+ </p>
868
+ </div>
869
+
870
+ <div class="story-card">
871
+ <h3 class="story-title">
872
+ <span>🌟</span>
873
+ 허깅페이스 명예의 전당 2회 선정
874
+ </h3>
875
+ <p class="story-content">
876
+ "스타트업 대표입니다. 컨설팅받은 아이디어를 현실화하여 <span class="story-highlight">허깅페이스 'Spaces of the week'에 2차례 선정</span>되었습니다. 기술력을 인정받아 투자 유치에 큰 도움이 되었습니다."
877
+ </p>
878
+ </div>
879
+
880
+ <div class="story-card">
881
+ <h3 class="story-title">
882
+ <span>📈</span>
883
+ 한국 최다 이미지 생성 기록
884
+ </h3>
885
+ <p class="story-content">
886
+ "스타트업 CTO입니다. 교육받은 내용으로 전문 LoRA 모델을 개발했는데, <span class="story-highlight">공개 1개월만에 월 130만건 이미지 생성, 3개월간 400만건</span>에 육박하는 한국 기업 최다 기록을 달성했습니다."
887
+ </p>
888
+ </div>
889
+ </div>
890
+ </div>
891
+
892
+ <div class="success-section">
893
+ <h2 class="section-title">💼 비즈니스 혁신 사례</h2>
894
+ <div class="story-cards">
895
+ <div class="story-card">
896
+ <h3 class="story-title">
897
+ <span>🎬</span>
898
+ 지블리 열풍의 주인공
899
+ </h3>
900
+ <p class="story-content">
901
+ "자체 이미지 학습/생성 모델을 개발하여 <span class="story-highlight">지블리 열풍 당시 허깅페이스 전체 순위 2위</span>를 기록했습니다. 수십만 다운로드를 통해 자체 SAAS 서비스를 성공적으로 출시했습니다."
902
+ </p>
903
+ </div>
904
+
905
+ <div class="story-card">
906
+ <h3 class="story-title">
907
+ <span>💼</span>
908
+ 월 100만 MAU 달성
909
+ </h3>
910
+ <p class="story-content">
911
+ "마케팅 기획자입니다. 글로벌 AI 서비스 구현이 막막했지만, 교육을 통해 개발한 서비스가 <span class="story-highlight">매월 100만 MAU를 돌파</span>하며 회사의 새로운 성장 동력이 되었습니다."
912
+ </p>
913
+ </div>
914
+
915
+ <div class="story-card">
916
+ <h3 class="story-title">
917
+ <span>🏦</span>
918
+ 대형 은행 AI 프로그램 선발
919
+ </h3>
920
+ <p class="story-content">
921
+ "설립 1년차 스타트업이 교육받은 기술력으로 <span class="story-highlight">대형 은행 AI 육성 프로그램에 선발</span>되어 투자와 지원을 받게 되었습니다."
922
+ </p>
923
+ </div>
924
+ </div>
925
+ </div>
926
+
927
+ <div class="success-section">
928
+ <h2 class="section-title">🎓 개인의 성장과 도전</h2>
929
+ <div class="story-cards">
930
+ <div class="story-card">
931
+ <h3 class="story-title">
932
+ <span>🎓</span>
933
+ 아이비리그 도전하는 고등학생
934
+ </h3>
935
+ <p class="story-content">
936
+ "미국 유학중인 고등학생입니다. <span class="story-highlight">아이비리그 입학을 위한 특별 프로젝트</span>로 AI + IoT 서비스를 교육을 통해 현실로 구현했습니다. 꿈에 한 걸음 더 다가섰습니다."
937
+ </p>
938
+ </div>
939
+
940
+ <div class="story-card">
941
+ <h3 class="story-title">
942
+ <span>💄</span>
943
+ 청년 창업의 시작
944
+ </h3>
945
+ <p class="story-content">
946
+ "뷰티 AI 서비스 기획자입니다. <span class="story-highlight">비전인식과 이미지 합성의 최적점과 API 지원</span>을 받아 청년 창업에 도전하게 되었습니다."
947
+ </p>
948
+ </div>
949
+
950
+ <div class="story-card">
951
+ <h3 class="story-title">
952
+ <span>🖥️</span>
953
+ H100 GPU 서버팜 경험
954
+ </h3>
955
+ <p class="story-content">
956
+ "취업 준비생입니다. <span class="story-highlight">NVIDIA H100 GPU 서버팜 운용 경험과 노하우</span>를 얻어 취업에 자신감을 갖게 되었습니다."
957
+ </p>
958
+ </div>
959
+ </div>
960
+ </div>
961
+
962
+ <div class="success-section">
963
+ <h2 class="section-title">🏭 산업 전문가들의 혁신</h2>
964
+ <div class="story-cards">
965
+ <div class="story-card">
966
+ <h3 class="story-title">
967
+ <span>🏭</span>
968
+ 23년차 IT 전문가의 AX 달성
969
+ </h3>
970
+ <p class="story-content">
971
+ "IT 업력 23년차입니다. 미래 기술 불안감을 극복하고 <span class="story-highlight">교육과 기술지원으로 자사 서비스에 AI를 접목한 AX</span>를 달성했습니다."
972
+ </p>
973
+ </div>
974
+
975
+ <div class="story-card">
976
+ <h3 class="story-title">
977
+ <span>🤖</span>
978
+ 피지컬 AI의 미래
979
+ </h3>
980
+ <p class="story-content">
981
+ "제조업체 연구소장입니다. <span class="story-highlight">NVIDIA 나노 젯슨을 활용한 피지컬 AI 모델 구성과 개발 역량</span>을 확보하여 세계적인 로봇 서비스 출시를 준비중입니다."
982
+ </p>
983
+ </div>
984
+
985
+ <div class="story-card">
986
+ <h3 class="story-title">
987
+ <span>🎬</span>
988
+ AI 영화의 탄생
989
+ </h3>
990
+ <p class="story-content">
991
+ "현직 영화 감독입니다. <span class="story-highlight">100% AI 생성 영상으로 영화 제작이 가능</span>하다는 확신과 기법을 배워 AI 생성 영화를 준비중입니다."
992
+ </p>
993
+ </div>
994
+
995
+ <div class="story-card">
996
+ <h3 class="story-title">
997
+ <span>📚</span>
998
+ AGI 시대의 작가
999
+ </h3>
1000
+ <p class="story-content">
1001
+ "베스트셀러 작가입니다. AGI 레벨 서비스 실습에서 <span class="story-highlight">100페이지 소설 초고를 20분만에 완성</span>하는 충격적인 경험을 했습니다. 진정한 작가 지원 시스템의 가능성을 확인했습니다."
1002
+ </p>
1003
+ </div>
1004
+ </div>
1005
+ </div>
1006
+ </div>
1007
+
1008
  <!-- Heatmap Leaderboard Tab -->
1009
  <div id="heatmap" class="tab-content">
1010
  <div class="external-container">