Spaces:
Running
Running
File size: 26,506 Bytes
0e0cde5 |
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 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Massive Music Booking App</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
body {
font-family: 'Poppins', sans-serif;
max-width: 414px;
margin: 0 auto;
background-color: #f8f9fa;
position: relative;
min-height: 100vh;
}
.app-bar {
height: 60px;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.bottom-nav {
height: 60px;
box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}
.calendar-day.selected {
background-color: #3b82f6;
color: white;
}
.event-card {
transition: all 0.3s ease;
}
.event-card:hover {
transform: translateY(-3px);
box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.fade-in {
animation: fadeIn 0.3s ease-in-out;
}
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
.slide-up {
animation: slideUp 0.3s ease-out;
}
@keyframes slideUp {
from { transform: translateY(20px); opacity: 0; }
to { transform: translateY(0); opacity: 1; }
}
</style>
</head>
<body class="bg-gray-50">
<!-- App Header -->
<header class="app-bar bg-white fixed top-0 left-0 right-0 z-10 flex items-center justify-between px-4">
<div class="flex items-center">
<img src="https://www.massivmusic.nl/wp-content/uploads/2021/04/MassivMusic_Logo_2021_RGB-300x100.png" alt="Massive Music Logo" class="h-10">
</div>
<div class="flex items-center space-x-4">
<button class="text-gray-600">
<i class="fas fa-search"></i>
</button>
<button class="text-gray-600">
<i class="fas fa-user"></i>
</button>
</div>
</header>
<!-- Main Content -->
<main class="pt-16 pb-20 px-4">
<!-- Tab Navigation -->
<div class="flex border-b mb-6">
<button id="tab-agenda" class="flex-1 py-3 font-medium text-blue-600 border-b-2 border-blue-600">
<i class="fas fa-calendar-alt mr-2"></i> Agenda
</button>
<button id="tab-booking" class="flex-1 py-3 font-medium text-gray-500">
<i class="fas fa-calendar-plus mr-2"></i> Book Us
</button>
<button id="tab-contact" class="flex-1 py-3 font-medium text-gray-500">
<i class="fas fa-envelope mr-2"></i> Contact
</button>
</div>
<!-- Agenda Tab Content -->
<div id="content-agenda" class="slide-up">
<div class="flex justify-between items-center mb-4">
<h2 class="text-xl font-bold text-gray-800">Upcoming Shows</h2>
<div class="flex items-center space-x-2">
<button class="px-3 py-1 bg-blue-100 text-blue-600 rounded-full text-sm">
<i class="fas fa-sync-alt mr-1"></i> Sync
</button>
<button class="px-3 py-1 bg-gray-100 text-gray-600 rounded-full text-sm">
<i class="fas fa-filter mr-1"></i> Filter
</button>
</div>
</div>
<!-- Calendar Mini View -->
<div class="bg-white rounded-xl shadow-sm p-4 mb-6">
<div class="flex justify-between items-center mb-3">
<button class="text-gray-500">
<i class="fas fa-chevron-left"></i>
</button>
<h3 class="font-medium">June 2024</h3>
<button class="text-gray-500">
<i class="fas fa-chevron-right"></i>
</button>
</div>
<div class="grid grid-cols-7 gap-1 text-center text-sm">
<div class="text-gray-400 py-1">S</div>
<div class="text-gray-400 py-1">M</div>
<div class="text-gray-400 py-1">T</div>
<div class="text-gray-400 py-1">W</div>
<div class="text-gray-400 py-1">T</div>
<div class="text-gray-400 py-1">F</div>
<div class="text-gray-400 py-1">S</div>
<!-- Calendar days would be populated dynamically -->
<div class="py-1">26</div>
<div class="py-1">27</div>
<div class="py-1">28</div>
<div class="py-1">29</div>
<div class="py-1">30</div>
<div class="py-1">31</div>
<div class="py-1">1</div>
<div class="py-1">2</div>
<div class="py-1">3</div>
<div class="py-1">4</div>
<div class="py-1">5</div>
<div class="py-1">6</div>
<div class="py-1">7</div>
<div class="py-1">8</div>
<div class="py-1">9</div>
<div class="py-1">10</div>
<div class="py-1">11</div>
<div class="py-1">12</div>
<div class="py-1">13</div>
<div class="py-1">14</div>
<div class="py-1">15</div>
<div class="py-1">16</div>
<div class="py-1">17</div>
<div class="py-1">18</div>
<div class="py-1">19</div>
<div class="py-1">20</div>
<div class="py-1">21</div>
<div class="py-1">22</div>
<div class="py-1">23</div>
<div class="py-1">24</div>
<div class="py-1 bg-blue-100 text-blue-600 rounded-full font-medium">25</div>
<div class="py-1">26</div>
<div class="py-1">27</div>
<div class="py-1">28</div>
<div class="py-1">29</div>
<div class="py-1">30</div>
<div class="py-1">1</div>
<div class="py-1">2</div>
<div class="py-1">3</div>
<div class="py-1">4</div>
<div class="py-1">5</div>
<div class="py-1">6</div>
</div>
</div>
<!-- Events List -->
<h3 class="text-lg font-semibold text-gray-800 mb-3">Next Events</h3>
<div class="space-y-4">
<!-- Event cards would be populated from API -->
<div class="event-card bg-white rounded-xl shadow-sm p-4">
<div class="flex justify-between items-start mb-2">
<div>
<span class="inline-block px-2 py-1 bg-blue-100 text-blue-600 rounded-full text-xs font-medium mb-1">Public Show</span>
<h4 class="font-bold text-gray-800">Summer Festival</h4>
</div>
<div class="text-right">
<div class="text-sm text-gray-500">June 25, 2024</div>
<div class="text-sm text-gray-500">20:00 - 23:00</div>
</div>
</div>
<div class="flex items-center text-sm text-gray-600">
<i class="fas fa-map-marker-alt mr-2 text-blue-500"></i>
<span>Amsterdam, NL</span>
</div>
<div class="mt-3 flex justify-between items-center">
<button class="text-blue-600 text-sm font-medium">
<i class="fas fa-info-circle mr-1"></i> Details
</button>
<button class="text-gray-600 text-sm">
<i class="fas fa-share-alt mr-1"></i> Share
</button>
</div>
</div>
<div class="event-card bg-white rounded-xl shadow-sm p-4">
<div class="flex justify-between items-start mb-2">
<div>
<span class="inline-block px-2 py-1 bg-purple-100 text-purple-600 rounded-full text-xs font-medium mb-1">Private Event</span>
<h4 class="font-bold text-gray-800">Corporate Party</h4>
</div>
<div class="text-right">
<div class="text-sm text-gray-500">July 12, 2024</div>
<div class="text-sm text-gray-500">19:30 - 22:30</div>
</div>
</div>
<div class="flex items-center text-sm text-gray-600">
<i class="fas fa-map-marker-alt mr-2 text-blue-500"></i>
<span>Rotterdam, NL</span>
</div>
<div class="mt-3 flex justify-between items-center">
<button class="text-blue-600 text-sm font-medium">
<i class="fas fa-info-circle mr-1"></i> Details
</button>
<button class="text-gray-600 text-sm">
<i class="fas fa-share-alt mr-1"></i> Share
</button>
</div>
</div>
<div class="event-card bg-white rounded-xl shadow-sm p-4">
<div class="flex justify-between items-start mb-2">
<div>
<span class="inline-block px-2 py-1 bg-green-100 text-green-600 rounded-full text-xs font-medium mb-1">Wedding</span>
<h4 class="font-bold text-gray-800">Sarah & Mike's Wedding</h4>
</div>
<div class="text-right">
<div class="text-sm text-gray-500">August 3, 2024</div>
<div class="text-sm text-gray-500">18:00 - 00:00</div>
</div>
</div>
<div class="flex items-center text-sm text-gray-600">
<i class="fas fa-map-marker-alt mr-2 text-blue-500"></i>
<span>Utrecht, NL</span>
</div>
<div class="mt-3 flex justify-between items-center">
<button class="text-blue-600 text-sm font-medium">
<i class="fas fa-info-circle mr-1"></i> Details
</button>
<button class="text-gray-600 text-sm">
<i class="fas fa-share-alt mr-1"></i> Share
</button>
</div>
</div>
</div>
</div>
<!-- Booking Tab Content -->
<div id="content-booking" class="hidden slide-up">
<h2 class="text-xl font-bold text-gray-800 mb-4">Book Massive Music</h2>
<div class="bg-white rounded-xl shadow-sm p-4 mb-6">
<h3 class="font-medium text-gray-700 mb-3">Available Packages</h3>
<div class="space-y-3">
<div class="flex items-center justify-between p-3 border border-gray-200 rounded-lg">
<div>
<h4 class="font-medium">Standard Package</h4>
<p class="text-sm text-gray-500">2 sets (3 hours total)</p>
</div>
<div class="text-right">
<div class="font-bold text-blue-600">€1,500</div>
<div class="text-xs text-gray-500">+ travel costs</div>
</div>
</div>
<div class="flex items-center justify-between p-3 border border-blue-200 rounded-lg bg-blue-50">
<div>
<h4 class="font-medium">Premium Package</h4>
<p class="text-sm text-gray-500">3 sets (4 hours total)</p>
</div>
<div class="text-right">
<div class="font-bold text-blue-600">€2,200</div>
<div class="text-xs text-gray-500">+ travel costs</div>
</div>
</div>
<div class="flex items-center justify-between p-3 border border-gray-200 rounded-lg">
<div>
<h4 class="font-medium">Custom Package</h4>
<p class="text-sm text-gray-500">Tailored to your needs</p>
</div>
<div class="text-right">
<div class="font-bold text-blue-600">Contact us</div>
</div>
</div>
</div>
</div>
<div class="bg-white rounded-xl shadow-sm p-4 mb-6">
<h3 class="font-medium text-gray-700 mb-3">Check Availability</h3>
<div class="mb-4">
<label class="block text-gray-700 mb-1">Event Date</label>
<div class="relative">
<input type="date" class="w-full p-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-blue-500">
<i class="fas fa-calendar-alt absolute right-3 top-3.5 text-gray-400"></i>
</div>
</div>
<div class="mb-4">
<label class="block text-gray-700 mb-1">Event Type</label>
<select class="w-full p-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-blue-500">
<option value="">Select event type</option>
<option value="wedding">Wedding</option>
<option value="corporate">Corporate Event</option>
<option value="festival">Festival</option>
<option value="private">Private Party</option>
<option value="other">Other</option>
</select>
</div>
<button class="w-full py-3 bg-blue-600 text-white rounded-lg font-medium hover:bg-blue-700 transition duration-300">
Check Availability
</button>
</div>
<div class="bg-white rounded-xl shadow-sm p-4">
<h3 class="font-medium text-gray-700 mb-3">Request Booking</h3>
<div class="mb-3">
<label class="block text-gray-700 mb-1">Full Name</label>
<input type="text" class="w-full p-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-blue-500" placeholder="Your name">
</div>
<div class="mb-3">
<label class="block text-gray-700 mb-1">Email Address</label>
<input type="email" class="w-full p-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-blue-500" placeholder="[email protected]">
</div>
<div class="mb-3">
<label class="block text-gray-700 mb-1">Phone Number</label>
<input type="tel" class="w-full p-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-blue-500" placeholder="+31 6 12345678">
</div>
<div class="mb-3">
<label class="block text-gray-700 mb-1">Event Details</label>
<textarea class="w-full p-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-blue-500" rows="3" placeholder="Tell us about your event..."></textarea>
</div>
<button class="w-full py-3 bg-green-600 text-white rounded-lg font-medium hover:bg-green-700 transition duration-300">
Send Booking Request
</button>
</div>
</div>
<!-- Contact Tab Content -->
<div id="content-contact" class="hidden slide-up">
<h2 class="text-xl font-bold text-gray-800 mb-4">Contact Us</h2>
<div class="bg-white rounded-xl shadow-sm p-4 mb-6">
<div class="flex items-center mb-4">
<div class="bg-blue-100 p-3 rounded-full mr-3">
<i class="fas fa-envelope text-blue-600 text-xl"></i>
</div>
<div>
<h3 class="font-medium text-gray-800">Email</h3>
<a href="mailto:[email protected]" class="text-blue-600">[email protected]</a>
</div>
</div>
<div class="flex items-center mb-4">
<div class="bg-green-100 p-3 rounded-full mr-3">
<i class="fas fa-phone-alt text-green-600 text-xl"></i>
</div>
<div>
<h3 class="font-medium text-gray-800">Phone</h3>
<a href="tel:+31612345678" class="text-blue-600">+31 6 12345678</a>
</div>
</div>
<div class="flex items-center">
<div class="bg-purple-100 p-3 rounded-full mr-3">
<i class="fas fa-globe-europe text-purple-600 text-xl"></i>
</div>
<div>
<h3 class="font-medium text-gray-800">Website</h3>
<a href="https://www.massivmusic.nl" target="_blank" class="text-blue-600">www.massivmusic.nl</a>
</div>
</div>
</div>
<div class="bg-white rounded-xl shadow-sm p-4 mb-6">
<h3 class="font-medium text-gray-700 mb-3">Social Media</h3>
<div class="flex space-x-3">
<a href="#" class="flex-1 bg-blue-600 text-white py-2 px-3 rounded-lg text-center">
<i class="fab fa-facebook-f mr-2"></i> Facebook
</a>
<a href="#" class="flex-1 bg-pink-600 text-white py-2 px-3 rounded-lg text-center">
<i class="fab fa-instagram mr-2"></i> Instagram
</a>
</div>
<div class="flex space-x-3 mt-3">
<a href="#" class="flex-1 bg-red-600 text-white py-2 px-3 rounded-lg text-center">
<i class="fab fa-youtube mr-2"></i> YouTube
</a>
<a href="#" class="flex-1 bg-blue-400 text-white py-2 px-3 rounded-lg text-center">
<i class="fab fa-twitter mr-2"></i> Twitter
</a>
</div>
</div>
<div class="bg-white rounded-xl shadow-sm p-4">
<h3 class="font-medium text-gray-700 mb-3">Quick Message</h3>
<div class="mb-3">
<label class="block text-gray-700 mb-1">Your Name</label>
<input type="text" class="w-full p-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-blue-500" placeholder="Your name">
</div>
<div class="mb-3">
<label class="block text-gray-700 mb-1">Your Email</label>
<input type="email" class="w-full p-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-blue-500" placeholder="[email protected]">
</div>
<div class="mb-3">
<label class="block text-gray-700 mb-1">Message</label>
<textarea class="w-full p-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-blue-500" rows="3" placeholder="Your message..."></textarea>
</div>
<button class="w-full py-3 bg-blue-600 text-white rounded-lg font-medium hover:bg-blue-700 transition duration-300">
Send Message
</button>
</div>
</div>
</main>
<!-- Bottom Navigation -->
<nav class="bottom-nav bg-white fixed bottom-0 left-0 right-0 flex justify-around items-center">
<button class="flex flex-col items-center py-2 text-blue-600">
<i class="fas fa-calendar-alt text-lg"></i>
<span class="text-xs mt-1">Agenda</span>
</button>
<button class="flex flex-col items-center py-2 text-gray-500">
<i class="fas fa-music text-lg"></i>
<span class="text-xs mt-1">Repertoire</span>
</button>
<button class="flex flex-col items-center py-2 text-gray-500">
<i class="fas fa-photo-video text-lg"></i>
<span class="text-xs mt-1">Media</span>
</button>
<button class="flex flex-col items-center py-2 text-gray-500">
<i class="fas fa-info-circle text-lg"></i>
<span class="text-xs mt-1">About</span>
</button>
</nav>
<script>
// Tab switching functionality
document.getElementById('tab-agenda').addEventListener('click', function() {
switchTab('agenda');
});
document.getElementById('tab-booking').addEventListener('click', function() {
switchTab('booking');
});
document.getElementById('tab-contact').addEventListener('click', function() {
switchTab('contact');
});
function switchTab(tabName) {
// Hide all content
document.getElementById('content-agenda').classList.add('hidden');
document.getElementById('content-booking').classList.add('hidden');
document.getElementById('content-contact').classList.add('hidden');
// Reset all tabs
document.getElementById('tab-agenda').classList.remove('text-blue-600', 'border-blue-600');
document.getElementById('tab-agenda').classList.add('text-gray-500');
document.getElementById('tab-booking').classList.remove('text-blue-600', 'border-blue-600');
document.getElementById('tab-booking').classList.add('text-gray-500');
document.getElementById('tab-contact').classList.remove('text-blue-600', 'border-blue-600');
document.getElementById('tab-contact').classList.add('text-gray-500');
// Show selected content
document.getElementById('content-' + tabName).classList.remove('hidden');
document.getElementById('content-' + tabName).classList.add('slide-up');
// Highlight selected tab
document.getElementById('tab-' + tabName).classList.remove('text-gray-500');
document.getElementById('tab-' + tabName).classList.add('text-blue-600', 'border-blue-600');
}
// In a real app, this would sync with your WordPress site
function syncWithWebsite() {
// This would make an API call to your WordPress site
// For example using the WordPress REST API
/*
fetch('https://www.massivmusic.nl/wp-json/massivmusic/v1/events')
.then(response => response.json())
.then(data => {
// Update the app with events from your website
console.log('Synced events:', data);
});
*/
// For demo purposes, we'll just show an alert
alert('Syncing with Massive Music website...');
}
// Booking form submission
function submitBooking() {
// In a real app, this would send the booking request to your server
// and trigger email notifications
// For demo purposes, we'll just show an alert
alert('Booking request sent! We will contact you soon.');
}
// Message form submission
function sendMessage() {
// In a real app, this would send the message to your server
// and trigger email notifications
// For demo purposes, we'll just show an alert
alert('Message sent! We will reply soon.');
}
</script>
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - <a href="https://enzostvs-deepsite.hf.space?remix=Dgeneral/massiv-space" style="color: #fff;text-decoration: underline;" target="_blank" >🧬 Remix</a></p></body>
</html> |