Spaces:
Running
Running
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title> | |
| PROJECT SKYBOX | |
| | Digital Archeology</title> | |
| <link rel="stylesheet" href="style.css"> | |
| <script src="https://cdn.tailwindcss.com"></script> | |
| <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script> | |
| <script src="https://unpkg.com/feather-icons"></script> | |
| <script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/r128/three.min.js"></script> | |
| <script src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.net.min.js"></script> | |
| </head> | |
| <body class="bg-gray-900 text-gray-100 min-h-screen flex flex-col"> | |
| <custom-navbar></custom-navbar> | |
| <main class="flex-grow container mx-auto px-4 py-12"> | |
| <div class="max-w-4xl mx-auto"> | |
| <div id="vanta-bg" class="absolute top-0 left-0 w-full h-full -z-10"></div> | |
| <div class="bg-gray-800/80 backdrop-blur-lg rounded-xl p-8 shadow-2xl border border-gray-700"> | |
| <div class="flex items-center mb-8"> | |
| <i data-feather="compass" class="w-12 h-12 text-amber-500 mr-4"></i> | |
| <h1 class="text-4xl font-bold bg-gradient-to-r from-amber-400 to-amber-600 bg-clip-text text-transparent"> | |
| PROJECT SKYBOX | |
| </h1> | |
| </div> | |
| <p class="text-xl mb-6 leading-relaxed"> | |
| A collective of video game and internet enthusiasts turned <span class="font-bold text-amber-400">digital time travelers</span>. | |
| We hunt down and solve mysteries that have become obscure or lost to time. | |
| </p> | |
| <div class="border-l-4 border-amber-500 pl-4 my-6"> | |
| <blockquote class="italic text-gray-300"> | |
| "Many believe everything online stays forever - but this is simply not true. | |
| Every day, stories and memories are lost; threads deleted, people forget." | |
| </blockquote> | |
| </div> | |
| <div class="prose prose-invert max-w-none"> | |
| <p class="mb-6"> | |
| Our mission is to find that which has been completely forgotten and bring it back to life. | |
| </p> | |
| <div class="bg-gray-700/50 p-4 rounded-lg mb-8"> | |
| <p class="flex items-center mb-2"> | |
| <i data-feather="youtube" class="mr-2 text-red-500"></i> | |
| We generally <a href="https://www.youtube.com/@Anomidae" class="text-amber-400 hover:underline">source our own investigations</a>, | |
| but we'll happily accept suggestions for things to look into. | |
| </p> | |
| </div> | |
| </div> | |
| <div class="mt-10 grid grid-cols-1 md:grid-cols-2 gap-6"> | |
| <a href="investigations.html" class="group relative block bg-gray-700/50 hover:bg-gray-700/70 border border-gray-600 rounded-xl p-6 transition-all duration-300"> | |
| <div class="absolute -inset-0.5 bg-gradient-to-r from-amber-500 to-transparent rounded-xl opacity-0 group-hover:opacity-100 transition duration-300"></div> | |
| <div class="relative"> | |
| <h3 class="text-xl font-bold mb-2 flex items-center"> | |
| <i data-feather="search" class="mr-2 text-amber-400"></i> | |
| Investigations | |
| </h3> | |
| <p class="text-gray-300">Explore our public investigations into forgotten digital artifacts</p> | |
| </div> | |
| </a> | |
| <a href="contact.html" class="group relative block bg-gray-700/50 hover:bg-gray-700/70 border border-gray-600 rounded-xl p-6 transition-all duration-300"> | |
| <div class="absolute -inset-0.5 bg-gradient-to-r from-amber-500 to-transparent rounded-xl opacity-0 group-hover:opacity-100 transition duration-300"></div> | |
| <div class="relative"> | |
| <h3 class="text-xl font-bold mb-2 flex items-center"> | |
| <i data-feather="mail" class="mr-2 text-amber-400"></i> | |
| Submit Leads | |
| </h3> | |
| <p class="text-gray-300">Have a forgotten mystery you'd like us to investigate?</p> | |
| </div> | |
| </a> | |
| </div> | |
| </div> | |
| </div> | |
| </main> | |
| <custom-footer></custom-footer> | |
| <script src="components/navbar.js"></script> | |
| <script src="components/footer.js"></script> | |
| <script src="script.js"></script> | |
| <script> | |
| feather.replace(); | |
| VANTA.NET({ | |
| el: "#vanta-bg", | |
| color: 0xfcba03, | |
| backgroundColor: 0x111827, | |
| points: 8, | |
| maxDistance: 20, | |
| spacing: 15 | |
| }); | |
| </script> | |
| <script src="https://huggingface.co/deepsite/deepsite-badge.js"></script> | |
| </body> | |
| </html> |