--- // Footer Component for WorkRoot IT Solutions // Features: Company info, quick links, services, social icons, newsletter subscription interface Props { class?: string; } const { class: className } = Astro.props; const quickLinks = [ { name: 'Home', href: '/' }, { name: 'About Us', href: '/about' }, { name: 'Services', href: '/services' }, { name: 'Portfolio', href: '/portfolio' }, { name: 'Blog', href: '/blog' }, { name: 'Contact', href: '/contact' }, ]; const services = [ { name: 'Web Development', href: '/services#web-development' }, { name: 'Mobile Apps', href: '/services#mobile-development' }, { name: 'ERP Solutions', href: '/services#erp-solutions' }, { name: 'Government Systems', href: '/services#government-systems' }, { name: 'UI/UX Design', href: '/services#ui-ux-design' }, { name: 'IT Consulting', href: '/services#it-consulting' }, ]; const socialLinks = [ { name: 'LinkedIn', href: 'https://www.linkedin.com/company/workroot', icon: 'linkedin' }, { name: 'Twitter', href: 'https://x.com/GhanwatAjay', icon: 'twitter' }, { name: 'GitHub', href: 'https://git.workroot.in/WorkRoot/', icon: 'github' }, { name: 'Facebook', href: 'https://www.facebook.com/profile.php?id=61576503897897', icon: 'facebook' }, ]; const currentYear = new Date().getFullYear(); ---