bytebard-nexus / blogs.html
authorizedcabal's picture
Change the header to a black NAV bar with the tabs right aligned
b47590d verified
<!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>Blogs | CodeCanvas</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>
</head>
<body class="bg-white text-primary font-mono antialiased">
<custom-navbar></custom-navbar>
<main class="container mx-auto px-4 py-16">
<section class="mb-20">
<h1 class="text-4xl md:text-6xl font-bold mb-12">Technical Writings</h1>
<!-- Blog Posts -->
<div class="grid grid-cols-1 md:grid-cols-2 gap-8">
<article class="border p-6 hover:shadow-lg transition-all">
<div class="mb-4">
<span class="text-secondary">March 15, 2023</span>
<h2 class="text-2xl font-bold mt-2">Optimizing Transformers for Production</h2>
</div>
<p class="text-secondary mb-4">Exploring quantization, pruning and distillation techniques to make transformer models production-ready...</p>
<a href="#" class="text-primary underline hover:text-secondary">Read More</a>
</article>
<article class="border p-6 hover:shadow-lg transition-all">
<div class="mb-4">
<span class="text-secondary">January 8, 2023</span>
<h2 class="text-2xl font-bold mt-2">The Math Behind Attention Mechanisms</h2>
</div>
<p class="text-secondary mb-4">A deep dive into the linear algebra that powers modern attention-based architectures...</p>
<a href="#" class="text-primary underline hover:text-secondary">Read More</a>
</article>
<article class="border p-6 hover:shadow-lg transition-all">
<div class="mb-4">
<span class="text-secondary">November 22, 2022</span>
<h2 class="text-2xl font-bold mt-2">ML System Design Patterns</h2>
</div>
<p class="text-secondary mb-4">Architectural blueprints for scalable machine learning systems in enterprise environments...</p>
<a href="#" class="text-primary underline hover:text-secondary">Read More</a>
</article>
<article class="border p-6 hover:shadow-lg transition-all">
<div class="mb-4">
<span class="text-secondary">September 5, 2022</span>
<h2 class="text-2xl font-bold mt-2">From Research to Production</h2>
</div>
<p class="text-secondary mb-4">Bridging the gap between academic ML models and industrial-grade applications...</p>
<a href="#" class="text-primary underline hover:text-secondary">Read More</a>
</article>
</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>