ginipick commited on
Commit
a0599e8
Β·
verified Β·
1 Parent(s): 2048d81

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +107 -48
index.html CHANGED
@@ -31,32 +31,55 @@
31
  margin-bottom: 10px;
32
  }
33
 
34
- /* Featured Link Section */
35
- .featured-link {
36
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
37
  border-radius: 20px;
38
- padding: 30px;
39
  margin-bottom: 50px;
40
- display: flex;
41
- align-items: center;
42
- gap: 30px;
43
- flex-wrap: wrap;
44
  }
45
 
46
- .featured-link img {
47
- width: 300px;
48
- border-radius: 10px;
49
- box-shadow: 0 10px 30px rgba(0,0,0,0.3);
50
  }
51
 
52
- .featured-link .content {
53
- flex: 1;
54
- min-width: 250px;
 
55
  }
56
 
57
- .featured-link h2 {
58
- font-size: 2em;
59
- margin-bottom: 15px;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
60
  }
61
 
62
  .visit-button {
@@ -69,7 +92,6 @@
69
  font-weight: bold;
70
  font-size: 1.1em;
71
  transition: all 0.3s ease;
72
- margin-top: 15px;
73
  }
74
 
75
  .visit-button:hover {
@@ -96,7 +118,6 @@
96
  border-radius: 15px;
97
  overflow: hidden;
98
  transition: transform 0.3s ease;
99
- cursor: pointer;
100
  }
101
 
102
  .gallery-item:hover {
@@ -159,16 +180,13 @@
159
  border: none;
160
  }
161
 
162
- @media (max-width: 768px) {
163
- .featured-link {
164
- flex-direction: column;
165
- text-align: center;
166
- }
167
-
168
- .featured-link img {
169
- width: 100%;
170
  }
 
171
 
 
172
  .gallery {
173
  grid-template-columns: 1fr;
174
  }
@@ -181,15 +199,33 @@
181
  <p>HuggingFace-based AI Development Portfolio</p>
182
  </div>
183
 
184
- <!-- Featured Link Section -->
185
- <div class="featured-link">
186
- <img src="ginigen-screenshot.png" alt="Ginigen AI">
187
- <div class="content">
188
- <h2>🍌 Ginigen AI</h2>
189
- <p>Next-Generation AI Solution Platform</p>
190
- <p>Accelerate your business with innovative AI technology</p>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
191
  <a href="https://www.ginigen.ai/en" target="_blank" class="visit-button">
192
- Visit Now β†’
193
  </a>
194
  </div>
195
  </div>
@@ -197,18 +233,6 @@
197
  <!-- Video Gallery -->
198
  <h2 class="section-title">🎬 Video Gallery</h2>
199
  <div class="gallery" id="video-gallery">
200
- <div class="gallery-item">
201
- <video src="h1.mp4" controls>
202
- Your browser does not support the video tag.
203
- </video>
204
- <div class="caption">H1 Demo</div>
205
- </div>
206
- <div class="gallery-item">
207
- <video src="h2.mp4" controls>
208
- Your browser does not support the video tag.
209
- </video>
210
- <div class="caption">H2 Demo</div>
211
- </div>
212
  <div class="gallery-item">
213
  <video src="q1.mp4" controls>
214
  Your browser does not support the video tag.
@@ -224,7 +248,7 @@
224
  <div class="gallery-item">
225
  <video src="q3.mp4" controls>
226
  Your browser does not support the video tag.
227
- </div>
228
  <div class="caption">Q3 Demo</div>
229
  </div>
230
  <div class="gallery-item">
@@ -245,6 +269,18 @@
245
  </video>
246
  <div class="caption">Q6 Demo</div>
247
  </div>
 
 
 
 
 
 
 
 
 
 
 
 
248
  </div>
249
 
250
  <!-- Image Gallery -->
@@ -311,3 +347,26 @@
311
  </script>
312
  </body>
313
  </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
31
  margin-bottom: 10px;
32
  }
33
 
34
+ /* Featured Section with Videos */
35
+ .featured-section {
36
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
37
  border-radius: 20px;
38
+ padding: 40px;
39
  margin-bottom: 50px;
 
 
 
 
40
  }
41
 
42
+ .featured-section h2 {
43
+ font-size: 2em;
44
+ margin-bottom: 20px;
45
+ text-align: center;
46
  }
47
 
48
+ .featured-section p {
49
+ text-align: center;
50
+ font-size: 1.1em;
51
+ margin-bottom: 30px;
52
  }
53
 
54
+ .featured-media {
55
+ display: grid;
56
+ grid-template-columns: repeat(3, 1fr);
57
+ gap: 20px;
58
+ margin-bottom: 30px;
59
+ }
60
+
61
+ .featured-media-item {
62
+ background: #1a1a1a;
63
+ border-radius: 15px;
64
+ overflow: hidden;
65
+ }
66
+
67
+ .featured-media-item img,
68
+ .featured-media-item video {
69
+ width: 100%;
70
+ height: 250px;
71
+ object-fit: cover;
72
+ display: block;
73
+ }
74
+
75
+ .featured-media-item .caption {
76
+ padding: 10px;
77
+ text-align: center;
78
+ font-size: 0.9em;
79
+ }
80
+
81
+ .link-container {
82
+ text-align: center;
83
  }
84
 
85
  .visit-button {
 
92
  font-weight: bold;
93
  font-size: 1.1em;
94
  transition: all 0.3s ease;
 
95
  }
96
 
97
  .visit-button:hover {
 
118
  border-radius: 15px;
119
  overflow: hidden;
120
  transition: transform 0.3s ease;
 
121
  }
122
 
123
  .gallery-item:hover {
 
180
  border: none;
181
  }
182
 
183
+ @media (max-width: 1024px) {
184
+ .featured-media {
185
+ grid-template-columns: 1fr;
 
 
 
 
 
186
  }
187
+ }
188
 
189
+ @media (max-width: 768px) {
190
  .gallery {
191
  grid-template-columns: 1fr;
192
  }
 
199
  <p>HuggingFace-based AI Development Portfolio</p>
200
  </div>
201
 
202
+ <!-- Featured Section -->
203
+ <div class="featured-section">
204
+ <h2>🍌 Ginigen AI</h2>
205
+ <p>Next-Generation AI Solution Platform - Accelerate your business with innovative AI technology</p>
206
+
207
+ <div class="featured-media">
208
+ <div class="featured-media-item">
209
+ <img src="ginigen-screenshot.png" alt="Ginigen AI Screenshot">
210
+ <div class="caption">Ginigen AI Platform</div>
211
+ </div>
212
+ <div class="featured-media-item">
213
+ <video src="h1.mp4" controls>
214
+ Your browser does not support the video tag.
215
+ </video>
216
+ <div class="caption">H1 Demo</div>
217
+ </div>
218
+ <div class="featured-media-item">
219
+ <video src="h2.mp4" controls>
220
+ Your browser does not support the video tag.
221
+ </video>
222
+ <div class="caption">H2 Demo</div>
223
+ </div>
224
+ </div>
225
+
226
+ <div class="link-container">
227
  <a href="https://www.ginigen.ai/en" target="_blank" class="visit-button">
228
+ Visit Ginigen AI Now β†’
229
  </a>
230
  </div>
231
  </div>
 
233
  <!-- Video Gallery -->
234
  <h2 class="section-title">🎬 Video Gallery</h2>
235
  <div class="gallery" id="video-gallery">
 
 
 
 
 
 
 
 
 
 
 
 
236
  <div class="gallery-item">
237
  <video src="q1.mp4" controls>
238
  Your browser does not support the video tag.
 
248
  <div class="gallery-item">
249
  <video src="q3.mp4" controls>
250
  Your browser does not support the video tag.
251
+ </video>
252
  <div class="caption">Q3 Demo</div>
253
  </div>
254
  <div class="gallery-item">
 
269
  </video>
270
  <div class="caption">Q6 Demo</div>
271
  </div>
272
+ <div class="gallery-item">
273
+ <video src="q7.mp4" controls>
274
+ Your browser does not support the video tag.
275
+ </video>
276
+ <div class="caption">Q7 Demo</div>
277
+ </div>
278
+ <div class="gallery-item">
279
+ <video src="q8.mp4" controls>
280
+ Your browser does not support the video tag.
281
+ </video>
282
+ <div class="caption">Q8 Demo</div>
283
+ </div>
284
  </div>
285
 
286
  <!-- Image Gallery -->
 
347
  </script>
348
  </body>
349
  </html>
350
+ ```
351
+
352
+ ## μ£Όμš” 변경사항
353
+
354
+ βœ… **Featured Section**:
355
+ - Ginigen μŠ€ν¬λ¦°μƒ· + h1.mp4 + h2.mp4λ₯Ό κ°€λ‘œλ‘œ λ‚˜λž€νžˆ 배치 (3μ—΄ κ·Έλ¦¬λ“œ)
356
+ - κ·Έ μ•„λž˜ 링크 λ²„νŠΌ 쀑앙 배치
357
+
358
+ βœ… **Video Gallery**:
359
+ - q1~q8.mp4κΉŒμ§€ 8개 λ™μ˜μƒμ„ 2x4 κ·Έλ¦¬λ“œλ‘œ 배치
360
+
361
+ βœ… **Image Gallery**:
362
+ - q1~q8.jpgκΉŒμ§€ 8개 이미지 μœ μ§€
363
+
364
+ ## 파일 ꡬ쑰
365
+ ```
366
+ your-space/
367
+ β”œβ”€β”€ index.html
368
+ β”œβ”€β”€ ginigen-screenshot.png
369
+ β”œβ”€β”€ h1.mp4
370
+ β”œβ”€β”€ h2.mp4
371
+ β”œβ”€β”€ q1.mp4 ~ q8.mp4 (총 8개)
372
+ └── q1.jpg ~ q8.jpg (총 8개)