--- // Sitemap Page for WorkRoot IT Solutions // Features: Visual sitemap with links to all pages organized by category import BaseLayout from '../layouts/BaseLayout.astro'; // Sitemap structure const sitemapSections = [ { title: 'Main Pages', icon: 'home', links: [ { name: 'Home', url: '/', description: 'Welcome to WorkRoot IT Solutions' }, { name: 'About Us', url: '/about', description: 'Our story, team, and mission' }, { name: 'Services', url: '/services', description: 'Our IT service offerings' }, { name: 'Portfolio', url: '/portfolio', description: 'Featured projects and case studies' }, { name: 'Blog', url: '/blog', description: 'Insights and articles' }, { name: 'Contact', url: '/contact', description: 'Get in touch with us' }, ], }, { title: 'Services', icon: 'briefcase', links: [ { name: 'All Services', url: '/services', description: 'Our full range of IT service offerings' }, { name: 'Web Development', url: '/services#web-development', description: 'Custom web applications and e-commerce' }, { name: 'Mobile Development', url: '/services#mobile-development', description: 'iOS, Android, and cross-platform apps' }, { name: 'UI/UX Design', url: '/services#ui-ux-design', description: 'Accessible, conversion-focused interfaces' }, { name: 'IT Consulting & DevOps', url: '/services#it-consulting', description: 'Architecture, cloud, and CI/CD' }, ], }, { title: 'Solutions', icon: 'briefcase', links: [ { name: 'Custom ERP Development', url: '/services/custom-erp-development', description: 'Bespoke enterprise systems on Spring Boot & Angular' }, { name: 'University ERP', url: '/services/university-erp', description: 'Admissions, exams, grading — built for IIT Patna' }, { name: 'Government IT & GeM Vendor', url: '/services/government-it-solutions-gem-vendor', description: 'GeM-empanelled, live across 11+ districts' }, { name: 'Police Management System', url: '/services/police-management-system', description: 'FIR, case tracking & personnel for 15,000+ officers' }, { name: 'React Native App Development', url: '/services/react-native-app-development', description: 'One codebase for iOS and Android' }, ], }, { title: 'Resources', icon: 'book', links: [ { name: 'Blog', url: '/blog', description: 'Latest articles and insights' }, { name: 'Case Studies', url: '/portfolio', description: 'Detailed project analyses' }, ], }, { title: 'Company', icon: 'building', links: [ { name: 'About Us', url: '/about', description: 'Learn about our company' }, { name: 'Our Team', url: '/about#team', description: 'Meet our experts' }, { name: 'Careers', url: '/contact', description: 'Join our team' }, ], }, { title: 'Legal', icon: 'shield', links: [ { name: 'Privacy Policy', url: '/privacy', description: 'How we handle your data' }, { name: 'Terms of Service', url: '/terms', description: 'Terms and conditions' }, { name: 'Sitemap', url: '/sitemap', description: 'This page' }, ], }, { title: 'Connect', icon: 'share', links: [ { name: 'Contact Us', url: '/contact', description: 'Send us a message' }, { name: 'LinkedIn', url: '#', description: 'Follow us on LinkedIn', external: true }, { name: 'Twitter', url: '#', description: 'Follow us on Twitter', external: true }, { name: 'GitHub', url: '#', description: 'View our open source projects', external: true }, ], }, ]; // Icons mapping const icons: Record = { home: ``, briefcase: ``, book: ``, building: ``, shield: ``, share: ``, }; ---

Sitemap

Find your way around our website

{sitemapSections.map((section) => (

{section.title}

))}
Looking for the XML sitemap? Visit /sitemap.xml