--- // 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: '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: 'AI & Machine Learning', url: '/services#ai-ml', description: 'Intelligent solutions and automation' }, { name: 'Cloud Services', url: '/services#cloud', description: 'Cloud migration and infrastructure' }, ], }, { 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