---
// src/components/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: '/categories/kubernetes' },
{ name: 'Docker', path: '/categories/docker' },
{ name: 'DevOps', path: '/categories/devops' },
{ name: 'Networking', path: '/categories/networking' },
{ name: 'Storage', path: '/categories/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: '/homelab' },
{ name: 'Tech Stack', url: 'https://argobox.com/#services' },
{ 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/KeyArgo/',
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' }
];
---