Spaces:
Running
Running
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Cosmic Explorer - Journey Through the Universe</title> | |
| <link rel="icon" type="image/x-icon" href="/static/favicon.ico"> | |
| <link rel="stylesheet" href="style.css"> | |
| <script src="https://cdn.tailwindcss.com"></script> | |
| <script src="https://unpkg.com/feather-icons"></script> | |
| <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script> | |
| </head> | |
| <body class="bg-gradient-to-br from-gray-900 to-black text-white min-h-screen"> | |
| <!-- Navigation --> | |
| <header-custom></header-custom> | |
| <!-- Hero Section --> | |
| <section class="relative py-20 md:py-32 overflow-hidden"> | |
| <div class="absolute inset-0 z-0"> | |
| <div class="stars"></div> | |
| <div class="twinkling"></div> | |
| </div> | |
| <div class="container mx-auto px-4 relative z-10"> | |
| <div class="max-w-3xl mx-auto text-center"> | |
| <h1 class="text-4xl md:text-6xl font-bold mb-6 animate-fade-in-down">Explore the Infinite Cosmos</h1> | |
| <p class="text-xl md:text-2xl mb-10 text-gray-300 animate-fade-in-up">Journey through galaxies, nebulae, and celestial wonders with our interactive space exploration platform</p> | |
| <div class="flex flex-col sm:flex-row justify-center gap-4 animate-fade-in"> | |
| <a href="#explore" class="px-8 py-4 bg-indigo-600 hover:bg-indigo-700 rounded-full font-semibold transition-all transform hover:scale-105 shadow-lg shadow-indigo-500/30">Start Exploring</a> | |
| <a href="#features" class="px-8 py-4 bg-transparent border-2 border-indigo-500 hover:bg-indigo-500/10 rounded-full font-semibold transition-all">Learn More</a> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Features Section --> | |
| <section id="features" class="py-20 bg-gray-900/50"> | |
| <div class="container mx-auto px-4"> | |
| <div class="text-center mb-16"> | |
| <h2 class="text-3xl md:text-4xl font-bold mb-4">Discover the Universe</h2> | |
| <p class="text-gray-400 max-w-2xl mx-auto">Our platform offers unparalleled access to cosmic phenomena through cutting-edge visualization and real astronomical data</p> | |
| </div> | |
| <div class="grid grid-cols-1 md:grid-cols-3 gap-8"> | |
| <div class="bg-gray-800/30 backdrop-blur-sm p-8 rounded-xl border border-gray-700 hover:border-indigo-500 transition-all group"> | |
| <div class="w-16 h-16 rounded-full bg-indigo-500/10 flex items-center justify-center mb-6 group-hover:bg-indigo-500/20 transition-colors"> | |
| <i data-feather="globe" class="text-indigo-400 w-8 h-8"></i> | |
| </div> | |
| <h3 class="text-xl font-bold mb-3">Interactive Galaxy Maps</h3> | |
| <p class="text-gray-400">Navigate through detailed 3D models of galaxies with real astronomical data</p> | |
| </div> | |
| <div class="bg-gray-800/30 backdrop-blur-sm p-8 rounded-xl border border-gray-700 hover:border-indigo-500 transition-all group"> | |
| <div class="w-16 h-16 rounded-full bg-indigo-500/10 flex items-center justify-center mb-6 group-hover:bg-indigo-500/20 transition-colors"> | |
| <i data-feather="camera" class="text-indigo-400 w-8 h-8"></i> | |
| </div> | |
| <h3 class="text-xl font-bold mb-3">Hubble Gallery</h3> | |
| <p class="text-gray-400">Access thousands of high-resolution images captured by the Hubble Space Telescope</p> | |
| </div> | |
| <div class="bg-gray-800/30 backdrop-blur-sm p-8 rounded-xl border border-gray-700 hover:border-indigo-500 transition-all group"> | |
| <div class="w-16 h-16 rounded-full bg-indigo-500/10 flex items-center justify-center mb-6 group-hover:bg-indigo-500/20 transition-colors"> | |
| <i data-feather="book-open" class="text-indigo-400 w-8 h-8"></i> | |
| </div> | |
| <h3 class="text-xl font-bold mb-3">Cosmic Encyclopedia</h3> | |
| <p class="text-gray-400">Comprehensive database of celestial objects with detailed information</p> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Explore Section --> | |
| <section id="explore" class="py-20"> | |
| <div class="container mx-auto px-4"> | |
| <div class="text-center mb-16"> | |
| <h2 class="text-3xl md:text-4xl font-bold mb-4">Featured Celestial Objects</h2> | |
| <p class="text-gray-400 max-w-2xl mx-auto">Explore some of the most fascinating objects in our universe</p> | |
| </div> | |
| <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8" id="celestial-grid"> | |
| <!-- Content will be populated by JavaScript --> | |
| </div> | |
| <div class="text-center mt-12"> | |
| <button id="load-more" class="px-6 py-3 bg-indigo-600 hover:bg-indigo-700 rounded-lg font-medium transition-colors">Load More Discoveries</button> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Stats Section --> | |
| <section class="py-20 bg-gray-900/50"> | |
| <div class="container mx-auto px-4"> | |
| <div class="grid grid-cols-2 md:grid-cols-4 gap-8 text-center"> | |
| <div> | |
| <div class="text-4xl md:text-5xl font-bold text-indigo-400 mb-2" id="galaxy-count">0</div> | |
| <div class="text-gray-400">Galaxies</div> | |
| </div> | |
| <div> | |
| <div class="text-4xl md:text-5xl font-bold text-indigo-400 mb-2" id="nebula-count">0</div> | |
| <div class="text-gray-400">Nebulae</div> | |
| </div> | |
| <div> | |
| <div class="text-4xl md:text-5xl font-bold text-indigo-400 mb-2" id="star-count">0</div> | |
| <div class="text-gray-400">Star Systems</div> | |
| </div> | |
| <div> | |
| <div class="text-4xl md:text-5xl font-bold text-indigo-400 mb-2" id="planet-count">0</div> | |
| <div class="text-gray-400">Planets</div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- CTA Section --> | |
| <section class="py-20"> | |
| <div class="container mx-auto px-4"> | |
| <div class="max-w-4xl mx-auto bg-gradient-to-r from-indigo-900/50 to-purple-900/50 rounded-2xl p-12 text-center border border-indigo-500/30"> | |
| <h2 class="text-3xl md:text-4xl font-bold mb-6">Begin Your Cosmic Journey Today</h2> | |
| <p class="text-xl text-gray-300 mb-8 max-w-2xl mx-auto">Join thousands of explorers discovering the wonders of the universe</p> | |
| <div class="flex flex-col sm:flex-row justify-center gap-4"> | |
| <a href="#" class="px-8 py-4 bg-indigo-600 hover:bg-indigo-700 rounded-full font-semibold transition-all transform hover:scale-105 shadow-lg shadow-indigo-500/30">Get Started Free</a> | |
| <a href="#" class="px-8 py-4 bg-transparent border-2 border-indigo-500 hover:bg-indigo-500/10 rounded-full font-semibold transition-all">View Demo</a> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Footer --> | |
| <footer-custom></footer-custom> | |
| <script src="components/header.js"></script> | |
| <script src="components/footer.js"></script> | |
| <script src="script.js"></script> | |
| <script> | |
| feather.replace(); | |
| </script> | |
| <script src="https://huggingface.co/deepsite/deepsite-badge.js"></script> | |
| </body> | |
| </html> | |