File size: 4,830 Bytes
7bffc23 |
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 |
<!DOCTYPE html>
<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> |