GiniGen AI commited on
Commit ·
51e9708
1
Parent(s): e12e4e0
히어로 영상(hero-v1.mp4) 적용 — 1280x720 · 15초 · 24fps
Browse files- 영상 파일 hero-v1.mp4 (6.4MB) 추가, LFS로 추적 (.gitattributes *.mp4)
- Hero 섹션 카피 다음 / 통계 카드 위에 16:9 카드로 임베드
- autoplay muted loop playsinline, poster=logo-stacked.png
- max-width 960px, 22px radius, cyan+purple 듀얼 글로우 보더
- og:video 메타 3종(URL/type/width/height) 추가 — 공유 카드 영상 미리보기
- .gitattributes +1 -0
- hero-v1.mp4 +3 -0
- index.html +39 -0
.gitattributes
CHANGED
|
@@ -1 +1,2 @@
|
|
| 1 |
*.png filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
| 1 |
*.png filter=lfs diff=lfs merge=lfs -text
|
| 2 |
+
*.mp4 filter=lfs diff=lfs merge=lfs -text
|
hero-v1.mp4
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a7ec5ab7f66db0cec2beb6f4e40895a1a51c7d79a55e5cbfd69e934ac159839f
|
| 3 |
+
size 6687348
|
index.html
CHANGED
|
@@ -11,6 +11,10 @@
|
|
| 11 |
<meta property="og:type" content="website">
|
| 12 |
<meta property="og:url" content="https://ginigen.net">
|
| 13 |
<meta property="og:image" content="https://huggingface.co/spaces/ginigen/AI/resolve/main/logo-stacked.png">
|
|
|
|
|
|
|
|
|
|
|
|
|
| 14 |
<link rel="icon" type="image/png" href="logo-stacked.png">
|
| 15 |
<link rel="apple-touch-icon" href="logo-stacked.png">
|
| 16 |
<link href="https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.css" rel="stylesheet">
|
|
@@ -198,6 +202,35 @@
|
|
| 198 |
margin: 0 auto 36px;
|
| 199 |
line-height: 1.7;
|
| 200 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 201 |
.hero-stats {
|
| 202 |
display: grid;
|
| 203 |
grid-template-columns: repeat(3, 1fr);
|
|
@@ -691,6 +724,12 @@
|
|
| 691 |
진단(<strong>AX 종합병원</strong>) · 시뮬레이션(<strong>인공사회</strong>) · 생성(<strong>허그와트 바나나</strong>).<br>
|
| 692 |
한국 기업·정부·시민의 AI 전환을 떠받치는 세 개의 기둥.
|
| 693 |
</p>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 694 |
<div class="hero-stats">
|
| 695 |
<div class="hero-stat">
|
| 696 |
<div class="num">2위·5위</div>
|
|
|
|
| 11 |
<meta property="og:type" content="website">
|
| 12 |
<meta property="og:url" content="https://ginigen.net">
|
| 13 |
<meta property="og:image" content="https://huggingface.co/spaces/ginigen/AI/resolve/main/logo-stacked.png">
|
| 14 |
+
<meta property="og:video" content="https://huggingface.co/spaces/ginigen/AI/resolve/main/hero-v1.mp4">
|
| 15 |
+
<meta property="og:video:type" content="video/mp4">
|
| 16 |
+
<meta property="og:video:width" content="1280">
|
| 17 |
+
<meta property="og:video:height" content="720">
|
| 18 |
<link rel="icon" type="image/png" href="logo-stacked.png">
|
| 19 |
<link rel="apple-touch-icon" href="logo-stacked.png">
|
| 20 |
<link href="https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.css" rel="stylesheet">
|
|
|
|
| 202 |
margin: 0 auto 36px;
|
| 203 |
line-height: 1.7;
|
| 204 |
}
|
| 205 |
+
.hero-video {
|
| 206 |
+
position: relative;
|
| 207 |
+
max-width: 960px;
|
| 208 |
+
margin: 0 auto 44px;
|
| 209 |
+
aspect-ratio: 16 / 9;
|
| 210 |
+
border-radius: 22px;
|
| 211 |
+
overflow: hidden;
|
| 212 |
+
background: var(--bg-mid);
|
| 213 |
+
border: 1px solid var(--border);
|
| 214 |
+
box-shadow:
|
| 215 |
+
0 24px 70px rgba(0, 217, 255, 0.14),
|
| 216 |
+
0 0 0 1px rgba(167, 139, 250, 0.22),
|
| 217 |
+
inset 0 0 0 1px rgba(255, 255, 255, 0.04);
|
| 218 |
+
}
|
| 219 |
+
.hero-video video {
|
| 220 |
+
width: 100%;
|
| 221 |
+
height: 100%;
|
| 222 |
+
display: block;
|
| 223 |
+
object-fit: cover;
|
| 224 |
+
}
|
| 225 |
+
.hero-video::after {
|
| 226 |
+
content: '';
|
| 227 |
+
position: absolute;
|
| 228 |
+
inset: 0;
|
| 229 |
+
border-radius: 22px;
|
| 230 |
+
background: linear-gradient(135deg, rgba(0, 217, 255, 0.05) 0%, transparent 45%, rgba(167, 139, 250, 0.06) 100%);
|
| 231 |
+
pointer-events: none;
|
| 232 |
+
mix-blend-mode: screen;
|
| 233 |
+
}
|
| 234 |
.hero-stats {
|
| 235 |
display: grid;
|
| 236 |
grid-template-columns: repeat(3, 1fr);
|
|
|
|
| 724 |
진단(<strong>AX 종합병원</strong>) · 시뮬레이션(<strong>인공사회</strong>) · 생성(<strong>허그와트 바나나</strong>).<br>
|
| 725 |
한국 기업·정부·시민의 AI 전환을 떠받치는 세 개의 기둥.
|
| 726 |
</p>
|
| 727 |
+
<div class="hero-video" aria-label="GiniGen AI 히어로 영상">
|
| 728 |
+
<video autoplay muted loop playsinline preload="auto" poster="logo-stacked.png">
|
| 729 |
+
<source src="hero-v1.mp4" type="video/mp4">
|
| 730 |
+
브라우저가 이 영상을 지원하지 않습니다.
|
| 731 |
+
</video>
|
| 732 |
+
</div>
|
| 733 |
<div class="hero-stats">
|
| 734 |
<div class="hero-stat">
|
| 735 |
<div class="num">2위·5위</div>
|