Skip to content

Commit d06a66b

Browse files
authored
README.md
1 parent 6c5afe9 commit d06a66b

File tree

1 file changed

+14
-19
lines changed

1 file changed

+14
-19
lines changed

README.md

Lines changed: 14 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,6 @@
1313
<style>
1414
body {
1515
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;
2016
}
2117

2218
.section-title {
@@ -66,7 +62,7 @@
6662
</style>
6763
</head>
6864

69-
<body class="text-gray-800">
65+
<body class="bg-gray-50 text-gray-800">
7066

7167
<!-- Header -->
7268
<header id="header" class="bg-white shadow-md sticky top-0 z-50 transition-all duration-300">
@@ -105,6 +101,7 @@
105101
<section id="hero" class="relative h-screen flex items-center justify-center text-center text-white overflow-hidden">
106102
<!-- Video Background -->
107103
<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 -->
108105
<source src="https://github.com/kimi17-bot/GRPKorea/blob/main/grpkorea_hero.mp4?raw=true" type="video/mp4">
109106
Your browser does not support the video tag.
110107
</video>
@@ -177,7 +174,7 @@
177174
</section>
178175

179176
<!-- Gallery Section -->
180-
<section id="gallery" class="py-20 bg-gray-50">
177+
<section id="gallery" class="py-20">
181178
<div class="container mx-auto px-6">
182179
<h2 class="section-title">갤러리</h2>
183180
<p class="section-subtitle">GRP Korea의 활동 및 제품 사진들입니다.</p>
@@ -268,12 +265,12 @@
268265
</section>
269266

270267
<!-- Technology Section -->
271-
<section id="technology" class="py-20 bg-gray-50">
268+
<section id="technology" class="py-20">
272269
<div class="container mx-auto px-6">
273270
<h2 class="section-title">핵심 기술</h2>
274271
<p class="section-subtitle">GRP Korea의 경쟁력은 독보적인 기술력에서 나옵니다.</p>
275272
<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">
277274
<div class="flex items-center mb-4">
278275
<div class="bg-blue-100 text-blue-600 p-3 rounded-full mr-4">
279276
<i data-lucide="wind"></i>
@@ -293,7 +290,7 @@
293290
<i data-lucide="check-circle" class="text-green-500 mr-2"></i>복잡한 형상 및 코어 작업에 효율적</li>
294291
</ul>
295292
</div>
296-
<div class="bg-white p-8 rounded-lg shadow-md">
293+
<div class="bg-gray-50 p-8 rounded-lg shadow-md">
297294
<div class="flex items-center mb-4">
298295
<div class="bg-blue-100 text-blue-600 p-3 rounded-full mr-4">
299296
<i data-lucide="shield"></i>
@@ -356,7 +353,7 @@
356353
</section>
357354

358355
<!-- Products Section -->
359-
<section id="products" class="py-20 bg-gray-50">
356+
<section id="products" class="py-20">
360357
<div class="container mx-auto px-6">
361358
<h2 class="section-title">제품 소개</h2>
362359
<p class="section-subtitle">다양한 임무와 환경에 최적화된 GRP Korea의 제품 라인업을 만나보세요.</p>
@@ -434,7 +431,7 @@
434431
</section>
435432

436433
<!-- Delivery Performance Section -->
437-
<section id="performance" class="py-20 bg-gray-50">
434+
<section id="performance" class="py-20">
438435
<div class="container mx-auto px-6">
439436
<h2 class="section-title">주요 납품 실적</h2>
440437
<p class="section-subtitle">정부 기관 및 국내외 유수 기업들이 GRP Korea의 기술력을 신뢰합니다.</p>
@@ -694,14 +691,12 @@
694691
const soundOnIcon = document.getElementById('sound-on-icon');
695692
const soundOffIcon = document.getElementById('sound-off-icon');
696693

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+
});
705700

706701
</script>
707702
</body>

0 commit comments

Comments
 (0)