Spaces:
Running
Running
| <html lang="en" class="dark"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>SuperNova Blog | Latest Tech Insights</title> | |
| <meta name="description" content="Latest articles and insights from SuperNova's team of experts"> | |
| <link rel="icon" type="image/x-icon" href="/favicon.ico"> | |
| <script src="https://cdn.tailwindcss.com"></script> | |
| <script src="https://unpkg.com/feather-icons"></script> | |
| <link rel="stylesheet" href="style.css"> | |
| </head> | |
| <body class="bg-dark-900 text-gray-200 min-h-screen"> | |
| <custom-navbar></custom-navbar> | |
| <script src="components/navbar.js"></script> | |
| <main class="max-w-6xl mx-auto py-16 px-4"> | |
| <h1 class="text-5xl font-bold mb-12 text-center bg-clip-text text-transparent bg-gradient-to-r from-primary-500 to-secondary-500">SuperNova Blog</h1> | |
| <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8"> | |
| <article class="bg-dark-800 rounded-xl overflow-hidden border border-dark-700 hover:border-primary-500 transition-all duration-300 hover:-translate-y-2"> | |
| <img src="http://static.photos/technology/640x360/1" alt="AI Article" class="w-full h-48 object-cover"> | |
| <div class="p-6"> | |
| <div class="flex items-center gap-2 mb-4"> | |
| <span class="text-xs px-3 py-1 bg-primary-500/20 text-primary-500 rounded-full">AI</span> | |
| <span class="text-gray-400 text-sm">May 15, 2023</span> | |
| </div> | |
| <h2 class="text-2xl font-bold mb-3">The Future of AI in Web Development</h2> | |
| <p class="text-gray-400 mb-4">Exploring how artificial intelligence is revolutionizing the way we build and interact with web applications.</p> | |
| <a href="#" class="text-primary-500 font-medium inline-flex items-center gap-1 hover:text-primary-400 transition-colors"> | |
| Read More <i data-feather="arrow-right" class="w-4 h-4"></i> | |
| </a> | |
| </div> | |
| </article> | |
| <article class="bg-dark-800 rounded-xl overflow-hidden border border-dark-700 hover:border-secondary-500 transition-all duration-300 hover:-translate-y-2"> | |
| <img src="http://static.photos/technology/640x360/2" alt="Blockchain Article" class="w-full h-48 object-cover"> | |
| <div class="p-6"> | |
| <div class="flex items-center gap-2 mb-4"> | |
| <span class="text-xs px-3 py-1 bg-secondary-500/20 text-secondary-500 rounded-full">Blockchain</span> | |
| <span class="text-gray-400 text-sm">April 28, 2023</span> | |
| </div> | |
| <h2 class="text-2xl font-bold mb-3">Decentralized Applications: The Next Web Revolution</h2> | |
| <p class="text-gray-400 mb-4">How dApps are changing the landscape of internet services and user data ownership.</p> | |
| <a href="#" class="text-secondary-500 font-medium inline-flex items-center gap-1 hover:text-secondary-400 transition-colors"> | |
| Read More <i data-feather="arrow-right" class="w-4 h-4"></i> | |
| </a> | |
| </div> | |
| </article> | |
| <article class="bg-dark-800 rounded-xl overflow-hidden border border-dark-700 hover:border-purple-500 transition-all duration-300 hover:-translate-y-2"> | |
| <img src="http://static.photos/technology/640x360/3" alt="Web3 Article" class="w-full h-48 object-cover"> | |
| <div class="p-6"> | |
| <div class="flex items-center gap-2 mb-4"> | |
| <span class="text-xs px-3 py-1 bg-purple-500/20 text-purple-500 rounded-full">Web3</span> | |
| <span class="text-gray-400 text-sm">March 10, 2023</span> | |
| </div> | |
| <h2 class="text-2xl font-bold mb-3">Building the Metaverse: Tools and Technologies</h2> | |
| <p class="text-gray-400 mb-4">An in-depth look at the frameworks powering the next generation of immersive web experiences.</p> | |
| <a href="#" class="text-purple-500 font-medium inline-flex items-center gap-1 hover:text-purple-400 transition-colors"> | |
| Read More <i data-feather="arrow-right" class="w-4 h-4"></i> | |
| </a> | |
| </div> | |
| </article> | |
| </div> | |
| </main> | |
| <custom-footer></custom-footer> | |
| <script src="components/footer.js"></script> | |
| <script src="script.js"></script> | |
| <script> | |
| feather.replace(); | |
| </script> | |
| </body> | |
| </html> |