|
13 | 13 | <style> |
14 | 14 | body { |
15 | 15 | font-family: 'Noto Sans KR', 'Inter', sans-serif; |
16 | | - background-image: url('https://github.com/kimi17-bot/GRPKorea/blob/main/1100_real.png?raw=true'); |
17 | | - background-size: cover; |
18 | | - background-attachment: fixed; |
19 | | - background-position: center; |
20 | 16 | } |
21 | 17 |
|
22 | 18 | .section-title { |
|
66 | 62 | </style> |
67 | 63 | </head> |
68 | 64 |
|
69 | | -<body class="text-gray-800"> |
| 65 | +<body class="bg-gray-50 text-gray-800"> |
70 | 66 |
|
71 | 67 | <!-- Header --> |
72 | 68 | <header id="header" class="bg-white shadow-md sticky top-0 z-50 transition-all duration-300"> |
|
105 | 101 | <section id="hero" class="relative h-screen flex items-center justify-center text-center text-white overflow-hidden"> |
106 | 102 | <!-- Video Background --> |
107 | 103 | <video id="hero-video" autoplay loop muted playsinline class="absolute top-0 left-0 w-full h-full object-cover z-0"> |
| 104 | + <!-- The video source is now pointing to the GitHub URL --> |
108 | 105 | <source src="https://github.com/kimi17-bot/GRPKorea/blob/main/grpkorea_hero.mp4?raw=true" type="video/mp4"> |
109 | 106 | Your browser does not support the video tag. |
110 | 107 | </video> |
|
177 | 174 | </section> |
178 | 175 |
|
179 | 176 | <!-- Gallery Section --> |
180 | | - <section id="gallery" class="py-20 bg-gray-50"> |
| 177 | + <section id="gallery" class="py-20"> |
181 | 178 | <div class="container mx-auto px-6"> |
182 | 179 | <h2 class="section-title">갤러리</h2> |
183 | 180 | <p class="section-subtitle">GRP Korea의 활동 및 제품 사진들입니다.</p> |
|
268 | 265 | </section> |
269 | 266 |
|
270 | 267 | <!-- Technology Section --> |
271 | | - <section id="technology" class="py-20 bg-gray-50"> |
| 268 | + <section id="technology" class="py-20"> |
272 | 269 | <div class="container mx-auto px-6"> |
273 | 270 | <h2 class="section-title">핵심 기술</h2> |
274 | 271 | <p class="section-subtitle">GRP Korea의 경쟁력은 독보적인 기술력에서 나옵니다.</p> |
275 | 272 | <div class="grid md:grid-cols-2 gap-10"> |
276 | | - <div class="bg-white p-8 rounded-lg shadow-md"> |
| 273 | + <div class="bg-gray-50 p-8 rounded-lg shadow-md"> |
277 | 274 | <div class="flex items-center mb-4"> |
278 | 275 | <div class="bg-blue-100 text-blue-600 p-3 rounded-full mr-4"> |
279 | 276 | <i data-lucide="wind"></i> |
|
293 | 290 | <i data-lucide="check-circle" class="text-green-500 mr-2"></i>복잡한 형상 및 코어 작업에 효율적</li> |
294 | 291 | </ul> |
295 | 292 | </div> |
296 | | - <div class="bg-white p-8 rounded-lg shadow-md"> |
| 293 | + <div class="bg-gray-50 p-8 rounded-lg shadow-md"> |
297 | 294 | <div class="flex items-center mb-4"> |
298 | 295 | <div class="bg-blue-100 text-blue-600 p-3 rounded-full mr-4"> |
299 | 296 | <i data-lucide="shield"></i> |
|
356 | 353 | </section> |
357 | 354 |
|
358 | 355 | <!-- Products Section --> |
359 | | - <section id="products" class="py-20 bg-gray-50"> |
| 356 | + <section id="products" class="py-20"> |
360 | 357 | <div class="container mx-auto px-6"> |
361 | 358 | <h2 class="section-title">제품 소개</h2> |
362 | 359 | <p class="section-subtitle">다양한 임무와 환경에 최적화된 GRP Korea의 제품 라인업을 만나보세요.</p> |
|
434 | 431 | </section> |
435 | 432 |
|
436 | 433 | <!-- Delivery Performance Section --> |
437 | | - <section id="performance" class="py-20 bg-gray-50"> |
| 434 | + <section id="performance" class="py-20"> |
438 | 435 | <div class="container mx-auto px-6"> |
439 | 436 | <h2 class="section-title">주요 납품 실적</h2> |
440 | 437 | <p class="section-subtitle">정부 기관 및 국내외 유수 기업들이 GRP Korea의 기술력을 신뢰합니다.</p> |
|
694 | 691 | const soundOnIcon = document.getElementById('sound-on-icon'); |
695 | 692 | const soundOffIcon = document.getElementById('sound-off-icon'); |
696 | 693 |
|
697 | | - if (heroVideo && soundButton) { |
698 | | - soundButton.addEventListener('click', () => { |
699 | | - const isMuted = heroVideo.muted; |
700 | | - heroVideo.muted = !isMuted; |
701 | | - soundOffIcon.classList.toggle('hidden', !isMuted); |
702 | | - soundOnIcon.classList.toggle('hidden', isMuted); |
703 | | - }); |
704 | | - } |
| 694 | + soundButton.addEventListener('click', () => { |
| 695 | + const isMuted = heroVideo.muted; |
| 696 | + heroVideo.muted = !isMuted; |
| 697 | + soundOffIcon.classList.toggle('hidden', !isMuted); |
| 698 | + soundOnIcon.classList.toggle('hidden', isMuted); |
| 699 | + }); |
705 | 700 |
|
706 | 701 | </script> |
707 | 702 | </body> |
|
0 commit comments