feat: Add Blog link to navbar navigation

Adds Blog link to both desktop nav (between Architecture and About)
and mobile menu (before About & Resources section).

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
TheFlow 2026-02-08 18:06:15 +13:00
parent 757ac3dac3
commit 6de4dab9a9

View file

@ -110,6 +110,11 @@ class TractatusNavbar {
</div> </div>
</div> </div>
<!-- Blog (direct link) -->
<a href="/blog.html" class="px-3 py-2 text-sm font-medium text-gray-700 hover:text-blue-700 hover:bg-blue-50 rounded-lg transition">
Blog
</a>
<!-- About Dropdown --> <!-- About Dropdown -->
<div class="relative" data-dropdown="about"> <div class="relative" data-dropdown="about">
<button class="nav-dropdown-btn px-3 py-2 text-sm font-medium text-gray-700 hover:text-blue-700 hover:bg-blue-50 rounded-lg transition flex items-center gap-1"> <button class="nav-dropdown-btn px-3 py-2 text-sm font-medium text-gray-700 hover:text-blue-700 hover:bg-blue-50 rounded-lg transition flex items-center gap-1">
@ -195,6 +200,12 @@ class TractatusNavbar {
<a href="/integrations/agent-lightning.html" class="block px-3 py-2 text-sm text-gray-700 hover:bg-purple-50 hover:text-purple-700 rounded-lg transition">Agent Lightning</a> <a href="/integrations/agent-lightning.html" class="block px-3 py-2 text-sm text-gray-700 hover:bg-purple-50 hover:text-purple-700 rounded-lg transition">Agent Lightning</a>
</div> </div>
<!-- Blog -->
<div class="pb-3 mb-3 border-b border-gray-200">
<p class="text-xs font-semibold text-gray-500 uppercase tracking-wider mb-2 px-3">Blog</p>
<a href="/blog.html" class="block px-3 py-2 text-sm text-gray-700 hover:bg-blue-50 hover:text-blue-700 rounded-lg transition">Latest Posts</a>
</div>
<!-- About & Resources --> <!-- About & Resources -->
<div class="pb-3 mb-3 border-b border-gray-200"> <div class="pb-3 mb-3 border-b border-gray-200">
<p class="text-xs font-semibold text-gray-500 uppercase tracking-wider mb-2 px-3">About</p> <p class="text-xs font-semibold text-gray-500 uppercase tracking-wider mb-2 px-3">About</p>