this is great! can you change the color schema to black and white or grey scaled and add a blog section?
7bffc23
verified
| <html lang="en" class="scroll-smooth"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Quantum Mind Bytes | Blog</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> | |
| tailwind.config = { | |
| theme: { | |
| extend: { | |
| colors: { | |
| primary: 'rgb(23, 23, 23)', | |
| secondary: 'rgb(107, 114, 128)', | |
| accent: 'rgb(243, 244, 246)' | |
| } | |
| } | |
| } | |
| } | |
| </script> | |
| </head> | |
| <body class="bg-gray-50 font-sans antialiased text-gray-800"> | |
| <custom-navbar></custom-navbar> | |
| <main class="container mx-auto px-4 py-12"> | |
| <!-- Blog Header --> | |
| <section class="py-20 text-center"> | |
| <h1 class="text-4xl md:text-5xl font-bold mb-6 text-primary">Quantum Mind Bytes</h1> | |
| <p class="text-xl md:text-2xl mb-8 text-secondary max-w-2xl mx-auto"> | |
| Thoughts, research notes, and technical writings on data science, machine learning, and beyond. | |
| </p> | |
| </section> | |
| <!-- Blog Posts Grid --> | |
| <section class="pb-20"> | |
| <div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8"> | |
| <!-- Blog Post 1 --> | |
| <div class="bg-white rounded-xl shadow-md overflow-hidden group"> | |
| <img src="http://static.photos/abstract/640x360/30" alt="Blog Post 1" class="w-full h-48 object-cover"> | |
| <div class="p-6"> | |
| <div class="flex items-center gap-3 mb-4"> | |
| <span class="bg-primary/10 text-secondary text-xs px-3 py-1 rounded-full">Machine Learning</span> | |
| <span class="text-xs text-secondary">May 15, 2023</span> | |
| </div> | |
| <h3 class="font-bold text-xl mb-4 text-primary">Explainable AI in Modern Data Science</h3> | |
| <p class="text-gray-600 mb-4"> | |
| Exploring techniques to make complex machine learning models more interpretable and transparent. | |
| </p> | |
| <a href="#" class="text-primary hover:underline font-medium">Read More →</a> | |
| </div> | |
| </div> | |
| <!-- Blog Post 2 --> | |
| <div class="bg-white rounded-xl shadow-md overflow-hidden group"> | |
| <img src="http://static.photos/science/640x360/25" alt="Blog Post 2" class="w-full h-48 object-cover"> | |
| <div class="p-6"> | |
| <div class="flex items-center gap-3 mb-4"> | |
| <span class="bg-primary/10 text-secondary text-xs px-3 py-1 rounded-full">Deep Learning</span> | |
| <span class="text-xs text-secondary">April 2, 2023</span> | |
| </div> | |
| <h3 class="font-bold text-xl mb-4 text-primary">The Math Behind Neural Networks</h3> | |
| <p class="text-gray-600 mb-4"> | |
| A deep dive into the mathematical foundations powering modern deep learning architectures. | |
| </p> | |
| <a href="#" class="text-primary hover:underline font-medium">Read More →</a> | |
| </div> | |
| </div> | |
| <!-- Blog Post 3 --> | |
| <div class="bg-white rounded-xl shadow-md overflow-hidden group"> | |
| <img src="http://static.photos/technology/640x360/18" alt="Blog Post 3" class="w-full h-48 object-cover"> | |
| <div class="p-6"> | |
| <div class="flex items-center gap-3 mb-4"> | |
| <span class="bg-primary/10 text-secondary text-xs px-3 py-1 rounded-full">Data Engineering</span> | |
| <span class="text-xs text-secondary">March 10, 2023</span> | |
| </div> | |
| <h3 class="font-bold text-xl mb-4 text-primary">Building Scalable Data Pipelines</h3> | |
| <p class="text-gray-600 mb-4"> | |
| Architecting robust data pipelines that scale with your machine learning needs. | |
| </p> | |
| <a href="#" class="text-primary hover:underline font-medium">Read More →</a> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| </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();</script> | |
| </body> | |
| </html> |