/** * Minimal Navigation Component * Only creates breadcrumbs for your existing HTML */ document.addEventListener('DOMContentLoaded', function() { createBreadcrumbs(); }); function createBreadcrumbs() { const breadcrumbContainer = document.querySelector('.breadcrumbs'); if (!breadcrumbContainer) return; // Detect current page const path = window.location.pathname; const filename = path.split('/').pop() || 'index.html'; const currentPage = filename.replace('.html', ''); const pages = { 'index': { name: 'Home', icon: 'fas fa-home' }, 'trade-intelligence': { name: 'Trade Intelligence', icon: 'fas fa-ship' }, 'email-agent': { name: 'Email Agent', icon: 'fas fa-envelope' }, 'calendar-agent': { name: 'Calendar Agent', icon: 'fas fa-calendar' }, 'task-agent': { name: 'Task Agent', icon: 'fas fa-tasks' } }; const currentPageInfo = pages[currentPage]; if (!currentPageInfo) return; breadcrumbContainer.innerHTML = `