File size: 18,588 Bytes
5bd04d0 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 | <?php
// sing.php โ ๋
ธ๋ ๋ถ๋ฅด๊ธฐ (๊ทธ๋๋ณด๋/๋จ๋
์คํ ๊ฒธ์ฉ)
if (file_exists(__DIR__.'/_common.php')) {
include_once __DIR__.'/_common.php';
$g5['title'] = '๋
ธ๋ ๋ถ๋ฅด๊ธฐ - ์ํฐ๋ฏผ๋ค์ ์ผํฐ';
}
?>
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>๋
ธ๋ ๋ถ๋ฅด๊ธฐ - ์ํฐ๋ฏผ๋ค์ ์ผํฐ</title>
<link rel="icon" type="image/x-icon" href="/static/favicon.ico" />
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet" />
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<style>
.glass-effect {
background: rgba(255, 255, 255, 0.15);
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
border-radius: 20px;
border: 1px solid rgba(255, 255, 255, 0.18);
box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}
.gradient-bg {
background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 100%);
}
.sparkle-btn {
position: relative;
overflow: hidden;
transition: all 0.3s ease;
}
.sparkle-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,.3); }
.sparkle-btn::after {
content:""; position:absolute; top:-50%; left:-50%; width:200%; height:200%;
background: rgba(255,255,255,0.2); transform: rotate(30deg); transition: all .3s ease;
}
.sparkle-btn:hover::after { left:100%; top:100%; }
.lyrics-display {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
border-radius: 15px; padding: 30px; min-height: 300px;
display: flex; align-items: center; justify-content: center;
font-size: 1.2rem; line-height: 2; text-align: center;
}
.karaoke-mic { animation: pulse 2s infinite; }
@keyframes pulse { 0%{transform:scale(1)} 50%{transform:scale(1.1)} 100%{transform:scale(1)} }
.video-container { position:relative; padding-bottom:56.25%; height:0; overflow:hidden; border-radius: 15px; }
.video-container iframe { position:absolute; top:0; left:0; width:100%; height:100%; }
</style>
</head>
<body class="min-h-screen gradient-bg text-white">
<header class="relative z-10 py-6">
<div class="container mx-auto px-4">
<div class="flex justify-between items-center">
<div class="flex items-center">
<i data-feather="home" class="mr-2"></i>
<h1 class="text-2xl font-bold">์ํฐ๋ฏผ๋ค์ ์ผํฐ</h1>
</div>
<nav class="hidden md:block">
<ul class="flex space-x-8">
<li><a href="index.php" class="hover:text-yellow-200 transition">์ผํฐ ํ</a></li>
<li><a href="purpose.php" class="hover:text-yellow-200 transition">์ค๋ฆฝ๋ชฉ์ </a></li>
<li><a href="terms.php" class="hover:text-yellow-200 transition">์ด์ฉ์ฝ๊ด</a></li>
<li><a href="charter.php" class="hover:text-yellow-200 transition">์ ๊ด</a></li>
<li><a href="team.php" class="hover:text-yellow-200 transition">์ด์์ง</a></li>
<li><a href="karaoke.php" class="hover:text-yellow-200 transition">๋
ธ๋๋ฐฉ</a></li>
<li><a href="sing.php" class="hover:text-yellow-200 transition font-bold">๋
ธ๋ ๋ถ๋ฅด๊ธฐ</a></li>
</ul>
</nav>
<button class="md:hidden" aria-label="๋ฉ๋ด">
<i data-feather="menu"></i>
</button>
</div>
</div>
</header>
<main class="relative z-10 py-12">
<section class="container mx-auto px-4 mb-16">
<div class="glass-effect max-w-6xl mx-auto p-8 text-center" data-aos="fade-up">
<div class="flex items-center justify-center mb-6">
<i data-feather="mic" class="w-12 h-12 text-pink-400 karaoke-mic mr-4"></i>
<h1 class="text-4xl font-bold">๋
ธ๋ ๋ถ๋ฅด๊ธฐ</h1>
</div>
<p class="text-xl mb-8">๋ง์ดํฌ๋ฅผ ์ก๊ณ ์์ ๋กญ๊ฒ ๋
ธ๋ํ์ธ์! ์์ฝ ์์คํ
์ผ๋ก ํธ๋ฆฌํ๊ฒ ์ด์ฉํ ์ ์์ต๋๋ค</p>
</div>
</section>
<section class="container mx-auto px-4 mb-16">
<div class="grid lg:grid-cols-2 gap-12">
<!-- ๋
ธ๋ ์ฌ์ ํ๋ฉด -->
<div class="glass-effect p-8 rounded-xl" data-aos="fade-right">
<h2 class="text-2xl font-bold mb-6 text-center">๋
ธ๋ ์ฌ์ ํ๋ฉด</h2>
<div class="video-container mb-6">
<iframe
src="https://www.youtube.com/embed/dQw4w9WgXcQ"
title="๋
ธ๋ ์์"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
referrerpolicy="strict-origin-when-cross-origin"
allowfullscreen></iframe>
</div>
<div class="bg-white/10 rounded-lg p-4">
<div class="flex justify-between items-center mb-2">
<span class="text-sm">0:00</span>
<span class="text-sm">3:45</span>
</div>
<div class="w-full bg-gray-600 rounded-full h-2">
<div class="bg-pink-500 h-2 rounded-full" style="width: 35%"></div>
</div>
</div>
<div class="flex justify-center space-x-4 mb-6">
<button type="button" class="sparkle-btn bg-gray-600 text-white p-3 rounded-full" aria-label="์ด์ ">
<i data-feather="skip-back" class="w-6 h-6"></i>
</button>
<button type="button" class="sparkle-btn bg-pink-600 text-white p-4 rounded-full" aria-label="์ฌ์">
<i data-feather="play" class="w-8 h-8"></i>
</button>
<button type="button" class="sparkle-btn bg-gray-600 text-white p-3 rounded-full" aria-label="๋ค์">
<i data-feather="skip-forward" class="w-6 h-6"></i>
</button>
</div>
<div class="bg-white/10 rounded-lg p-4">
<div class="flex justify-between items-center mb-2">
<span class="text-sm">0:00</span>
<span class="text-sm">3:45</span>
</div>
<div class="w-full bg-gray-600 rounded-full h-2">
<div class="bg-pink-500 h-2 rounded-full" style="width: 35%"></div>
</div>
</div>
</div>
<!-- ์์ฝ ์์คํ
-->
<div class="glass-effect p-8 rounded-xl" data-aos="fade-left">
<h2 class="text-3xl font-bold mb-6 text-center">์์ฝ ๋ชฉ๋ก</h2>
<div class="mb-8">
<h3 class="text-xl font-semibold mb-4">์์ฝ ํํฉ</h3>
<div class="space-y-3">
<div class="flex justify-between items-center bg-white/10 p-3 rounded-lg">
<div>
<span class="font-semibold">18:00 - 18:30</span>
<span class="text-sm ml-2">๊น์ฒ ์</span>
</div>
<span class="text-green-300">์์ฝ ์๋ฃ</span>
</div>
<div class="flex justify-between items-center bg-white/10 p-3 rounded-lg">
<div>
<span class="font-semibold">18:30 - 19:00</span>
<span class="text-sm ml-2">์ด์ํฌ</span>
</div>
<span class="text-green-300">์์ฝ ์๋ฃ</span>
</div>
<div class="flex justify-between items-center bg-white/10 p-3 rounded-lg">
<div>
<span class="font-semibold">19:00 - 19:30</span>
<span class="text-sm ml-2">-</span>
</div>
<span class="text-yellow-300">์์ฝ ๊ฐ๋ฅ</span>
</div>
<div class="flex justify-between items-center bg-white/10 p-3 rounded-lg">
<div>
<span class="font-semibold">19:30 - 20:00</span>
<span class="text-sm ml-2">-</span>
</div>
<span class="text-yellow-300">์์ฝ ๊ฐ๋ฅ</span>
</div>
</div>
</div>
<div class="text-center">
<button type="button" class="sparkle-btn bg-pink-500 text-white px-6 py-3 rounded-lg font-semibold">
๋ด ์์ฝ ํ์ธํ๊ธฐ
</button>
</div>
</div>
</div>
</section>
<section class="container mx-auto px-4">
<div class="glass-effect p-8 rounded-xl">
<h2 class="text-3xl font-bold text-center mb-8">๋
ธ๋ ๊ฒ์ ๋ฐ ์ ํ</h2>
<div class="mb-8">
<div class="relative">
<i data-feather="search" class="absolute left-3 top-1/2 -translate-y-1/2 text-gray-400"></i>
<input type="text" placeholder="๋
ธ๋ ์ ๋ชฉ ๋๋ ๊ฐ์๋ช
์ผ๋ก ๊ฒ์..."
class="w-full glass-effect border border-white/20 rounded-lg pl-10 pr-4 py-3 focus:outline-none focus:ring-2 focus:ring-pink-400" />
</div>
</div>
<div class="grid md:grid-cols-2 lg:grid-cols-3 gap-4">
<!-- ์นด๋ 1 -->
<div class="glass-effect p-4 rounded-lg hover:bg-white/20 transition">
<div class="flex items-start gap-3">
<i data-feather="music" class="w-6 h-6 mt-1 text-pink-400"></i>
<div class="flex-1">
<div class="flex flex-col sm:flex-row sm:items-center sm:justify-between gap-3">
<div>
<h4 class="font-semibold leading-tight">์๋ฆฌ๋</h4>
<p class="text-sm text-gray-300">-</p>
</div>
<button type="button"
class="sparkle-btn w-full sm:w-auto inline-flex items-center justify-center gap-2 bg-red-500 text-white px-4 py-2 rounded-lg font-semibold">
<span aria-hidden="true">๐ค</span>
<span>์์ฝํ๊ธฐ</span>
</button>
</div>
</div>
</div>
</div>
<!-- ์นด๋ 2 -->
<div class="glass-effect p-4 rounded-lg hover:bg-white/20 transition">
<div class="flex items-start gap-3">
<i data-feather="music" class="w-6 h-6 mt-1 text-blue-400"></i>
<div class="flex-1">
<div class="flex flex-col sm:flex-row sm:items-center sm:justify-between gap-3">
<div>
<h4 class="font-semibold leading-tight">์ง๋ฌ๋๊ฝ</h4>
<p class="text-sm text-gray-300">๊น์ ๋จ</p>
</div>
<button type="button"
class="sparkle-btn w-full sm:w-auto inline-flex items-center justify-center gap-2 bg-red-500 text-white px-4 py-2 rounded-lg font-semibold">
<span aria-hidden="true">๐ค</span>
<span>์์ฝํ๊ธฐ</span>
</button>
</div>
</div>
</div>
</div>
<!-- ์นด๋ 3 -->
<div class="glass-effect p-4 rounded-lg hover:bg-white/20 transition">
<div class="flex items-start gap-3">
<i data-feather="music" class="w-6 h-6 mt-1 text-green-400"></i>
<div class="flex-1">
<div class="flex flex-col sm:flex-row sm:items-center sm:justify-between gap-3">
<div>
<h4 class="font-semibold leading-tight">๋๊ณผ ํจ๊ป</h4>
<p class="text-sm text-gray-300">๊น๊ด์</p>
</div>
<button type="button"
class="sparkle-btn w-full sm:w-auto inline-flex items-center justify-center gap-2 bg-red-500 text-white px-4 py-2 rounded-lg font-semibold">
<span aria-hidden="true">๐ค</span>
<span>์์ฝํ๊ธฐ</span>
</button>
</div>
</div>
</div>
</div>
<!-- ์นด๋ 4 -->
<div class="glass-effect p-4 rounded-lg hover:bg-white/20 transition">
<div class="flex items-start gap-3">
<i data-feather="music" class="w-6 h-6 mt-1 text-purple-400"></i>
<div class="flex-1">
<div class="flex flex-col sm:flex-row sm:items-center sm:justify-between gap-3">
<div>
<h4 class="font-semibold leading-tight">์ฌ๋ํ๊ธฐ ๋๋ฌธ์</h4>
<p class="text-sm text-gray-300">์ ์ฌํ</p>
</div>
<button type="button"
class="sparkle-btn w-full sm:w-auto inline-flex items-center justify-center gap-2 bg-red-500 text-white px-4 py-2 rounded-lg font-semibold">
<span aria-hidden="true">๐ค</span>
<span>์์ฝํ๊ธฐ</span>
</button>
</div>
</div>
</div>
</div>
<!-- ์นด๋ 5 -->
<div class="glass-effect p-4 rounded-lg hover:bg-white/20 transition">
<div class="flex items-start gap-3">
<i data-feather="music" class="w-6 h-6 mt-1 text-yellow-400"></i>
<div class="flex-1">
<div class="flex flex-col sm:flex-row sm:items-center sm:justify-between gap-3">
<div>
<h4 class="font-semibold leading-tight">๋๋ฐฑ์๊ฐ์จ</h4>
<p class="text-sm text-gray-300">์ฌ์๋ด</p>
</div>
<button type="button"
class="sparkle-btn w-full sm:w-auto inline-flex items-center justify-center gap-2 bg-red-500 text-white px-4 py-2 rounded-lg font-semibold">
<span aria-hidden="true">๐ค</span>
<span>์์ฝํ๊ธฐ</span>
</button>
</div>
</div>
</div>
</div>
<!-- ์นด๋ 6 -->
<div class="glass-effect p-4 rounded-lg hover:bg-white/20 transition">
<div class="flex items-start gap-3">
<i data-feather="music" class="w-6 h-6 mt-1 text-red-400"></i>
<div class="flex-1">
<div class="flex flex-col sm:flex-row sm:items-center sm:justify-between gap-3">
<div>
<h4 class="font-semibold leading-tight">๋น ๋ด๋ฆฌ๋ ๊ณ ๋ชจ๋ น</h4>
<p class="text-sm text-gray-300">๋จ์ง</p>
</div>
<button type="button"
class="sparkle-btn w-full sm:w-auto inline-flex items-center justify-center gap-2 bg-red-500 text-white px-4 py-2 rounded-lg font-semibold">
<span aria-hidden="true">๐ค</span>
<span>์์ฝํ๊ธฐ</span>
</button>
</div>
</div>
</div>
</div>
</div>
<div class="text-center mt-8">
<button type="button" class="sparkle-btn bg-pink-500 text-white px-8 py-3 rounded-lg font-semibold">
๋ ๋ง์ ๋
ธ๋ ๋ณด๊ธฐ
</button>
</div>
</div>
</section>
</main>
<footer class="relative z-10 py-8 mt-16 glass-effect">
<div class="container mx-auto px-4">
<div class="flex flex-col md:flex-row justify-between items-center">
<div class="mb-6 md:mb-0">
<h2 class="text-xl font-bold flex items-center">
<i data-feather="home" class="mr-2"></i> ์ํฐ๋ฏผ๋ค์ ์ผํฐ
</h2>
<p class="mt-2 text-sm">ํจ๊ปํ๋ ์๋ก์ด ์์</p>
</div>
<div class="flex space-x-6">
<a href="#" class="hover:text-yellow-200 transition" aria-label="Facebook"><i data-feather="facebook"></i></a>
<a href="#" class="hover:text-yellow-200 transition" aria-label="Twitter"><i data-feather="twitter"></i></a>
<a href="#" class="hover:text-yellow-200 transition" aria-label="Instagram"><i data-feather="instagram"></i></a>
<a href="#" class="hover:text-yellow-200 transition" aria-label="Mail"><i data-feather="mail"></i></a>
</div>
</div>
<div class="border-t border-gray-700 mt-8 pt-8 text-center text-sm">
<p>ยฉ <?php echo date('Y'); ?> ์ํฐ๋ฏผ๋ค์ ์ผํฐ. All rights reserved.</p>
</div>
</div>
</footer>
<script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
<script>
document.addEventListener('DOMContentLoaded', function(){
if (window.AOS) AOS.init({ duration: 800, easing: 'ease-in-out', once: true });
if (window.feather) feather.replace();
});
</script>
</body>
</html>
|