--- // Footer.astro // High-quality footer with navigation, social links and additional elements const currentYear = new Date().getFullYear(); // Define categories for footer links const categories = [ { title: 'Technology', links: [ { name: 'Kubernetes', path: '/blog/category/kubernetes' }, { name: 'Docker', path: '/blog/category/docker' }, { name: 'DevOps', path: '/blog/category/devops' }, { name: 'Networking', path: '/blog/category/networking' }, { name: 'Storage', path: '/blog/category/storage' } ] }, { title: 'Resources', links: [ { name: 'K8s Configurations', path: '/resources/kubernetes' }, { name: 'Docker Compose', path: '/resources/docker-compose' }, { name: 'Configuration Files', path: '/resources/config-files' }, { name: 'Infrastructure Code', path: '/resources/iac' }, { name: 'Tutorials', path: '/resources/tutorials' } ] }, { title: 'Projects', links: [ { name: 'HomeLab Setup', path: '/projects/homelab' }, { name: 'Tech Stack', path: '/projects/tech-stack' }, { name: 'Github Repos', path: '/projects/github' }, { name: 'Live Services', path: '/projects/services' }, { name: 'Obsidian Templates', path: '/projects/obsidian' } ] } ]; // Social links const socialLinks = [ { name: 'GitHub', url: 'https://github.com/yourusername', icon: '' }, { name: 'Twitter', url: 'https://twitter.com/yourusername', icon: '' }, { name: 'LinkedIn', url: 'https://linkedin.com/in/yourusername', icon: '' }, { name: 'RSS Feed', url: '/rss.xml', icon: '' } ]; // Server status for homelab services const services = [ { name: 'ArgoBox', status: 'active' }, { name: 'Git Server', status: 'active' }, { name: 'Kubernetes', status: 'active' }, { name: 'Media Server', status: 'active' } ]; ---