<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Xnovity Sitemap Generator</title>
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            color: #e2e8f0;
            min-height: 100vh;
            padding: 20px;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        header {
            text-align: center;
            padding: 40px 20px;
            background: rgba(15, 23, 42, 0.7);
            border-radius: 15px;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        h1 {
            font-size: 2.8rem;
            margin-bottom: 15px;
            background: linear-gradient(90deg, #60a5fa, #3b82f6, #2563eb);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        .subtitle {
            font-size: 1.2rem;
            color: #94a3b8;
            max-width: 800px;
            margin: 0 auto 25px;
        }
        
        .card-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 25px;
            margin-bottom: 40px;
        }
        
        .card {
            background: rgba(15, 23, 42, 0.7);
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
            border-color: rgba(59, 130, 246, 0.5);
        }
        
        .card h2 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: #60a5fa;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .card h2 i {
            background: rgba(59, 130, 246, 0.2);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .sitemap-list {
            list-style: none;
            padding-left: 20px;
        }
        
        .sitemap-list li {
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            position: relative;
            padding-left: 30px;
        }
        
        .sitemap-list li:before {
            content: "•";
            color: #3b82f6;
            font-size: 1.5rem;
            position: absolute;
            left: 0;
            top: -5px;
        }
        
        .sitemap-list a {
            color: #e2e8f0;
            text-decoration: none;
            font-size: 1.1rem;
            transition: color 0.3s ease;
            display: block;
        }
        
        .sitemap-list a:hover {
            color: #60a5fa;
        }
        
        .sitemap-list .priority {
            display: inline-block;
            background: rgba(59, 130, 246, 0.15);
            color: #93c5fd;
            padding: 3px 8px;
            border-radius: 4px;
            font-size: 0.85rem;
            margin-left: 10px;
        }
        
        .xml-preview {
            background: rgba(15, 23, 42, 0.7);
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.1);
            margin-bottom: 30px;
            overflow-x: auto;
        }
        
        .xml-preview h2 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: #60a5fa;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        pre {
            background: rgba(0, 0, 0, 0.3);
            padding: 20px;
            border-radius: 10px;
            overflow-x: auto;
            font-family: 'Courier New', monospace;
            font-size: 0.95rem;
            line-height: 1.5;
            color: #93c5fd;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .xml-tag {
            color: #60a5fa;
        }
        
        .xml-attr {
            color: #fbbf24;
        }
        
        .xml-value {
            color: #34d399;
        }
        
        .xml-comment {
            color: #94a3b8;
        }
        
        .actions {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
            flex-wrap: wrap;
        }
        
        .btn {
            background: linear-gradient(90deg, #2563eb, #1d4ed8);
            color: white;
            border: none;
            padding: 14px 30px;
            font-size: 1.1rem;
            border-radius: 8px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(37, 99, 235, 0.3);
        }
        
        .btn-secondary {
            background: rgba(30, 41, 59, 0.7);
            border: 1px solid rgba(59, 130, 246, 0.5);
        }
        
        .footer {
            text-align: center;
            padding: 30px;
            color: #94a3b8;
            font-size: 0.9rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 40px;
        }
        
        @media (max-width: 768px) {
            .card-container {
                grid-template-columns: 1fr;
            }
            
            h1 {
                font-size: 2.2rem;
            }
            
            .card {
                padding: 20px;
            }
        }
    </style>
</head>
<body>
    <div class="container">
        <header>
            <h1><i class="fas fa-sitemap"></i> Xnovity Sitemap</h1>
            <p class="subtitle">Comprehensive site structure for optimal search engine visibility and user navigation</p>
        </header>
        
        <div class="card-container">
            <div class="card">
                <h2><i class="fas fa-home"></i> Main Pages</h2>
                <ul class="sitemap-list">
                    <li><a href="https://xnovity.com/">Homepage <span class="priority">Priority: 1.0</span></a></li>
                    <li><a href="https://xnovity.com/about">About Us <span class="priority">Priority: 0.9</span></a></li>
                    <li><a href="https://xnovity.com/services">Services <span class="priority">Priority: 0.9</span></a></li>
                    <li><a href="https://xnovity.com/solutions">Solutions <span class="priority">Priority: 0.8</span></a></li>
                    <li><a href="https://xnovity.com/case-studies">Case Studies <span class="priority">Priority: 0.8</span></a></li>
                    <li><a href="https://xnovity.com/contact">Contact <span class="priority">Priority: 0.7</span></a></li>
                </ul>
            </div>
            
            <div class="card">
                <h2><i class="fas fa-cogs"></i> Services</h2>
                <ul class="sitemap-list">
                    <li><a href="https://xnovity.com/services/ai-solutions">AI Solutions <span class="priority">Priority: 0.8</span></a></li>
                    <li><a href="https://xnovity.com/services/data-analytics">Data Analytics <span class="priority">Priority: 0.8</span></a></li>
                    <li><a href="https://xnovity.com/services/cloud-integration">Cloud Integration <span class="priority">Priority: 0.8</span></a></li>
                    <li><a href="https://xnovity.com/services/cybersecurity">Cybersecurity <span class="priority">Priority: 0.8</span></a></li>
                    <li><a href="https://xnovity.com/services/digital-transformation">Digital Transformation <span class="priority">Priority: 0.8</span></a></li>
                    <li><a href="https://xnovity.com/services/custom-development">Custom Development <span class="priority">Priority: 0.8</span></a></li>
                </ul>
            </div>
            
            <div class="card">
                <h2><i class="fas fa-lightbulb"></i> Solutions</h2>
                <ul class="sitemap-list">
                    <li><a href="https://xnovity.com/solutions/enterprise">Enterprise Solutions <span class="priority">Priority: 0.8</span></a></li>
                    <li><a href="https://xnovity.com/solutions/smb">SMB Solutions <span class="priority">Priority: 0.8</span></a></li>
                    <li><a href="https://xnovity.com/solutions/healthcare">Healthcare Technology <span class="priority">Priority: 0.7</span></a></li>
                    <li><a href="https://xnovity.com/solutions/fintech">Fintech Solutions <span class="priority">Priority: 0.7</span></a></li>
                    <li><a href="https://xnovity.com/solutions/retail">Retail Technology <span class="priority">Priority: 0.7</span></a></li>
                    <li><a href="https://xnovity.com/solutions/iot">IoT Platforms <span class="priority">Priority: 0.7</span></a></li>
                </ul>
            </div>
            
            <div class="card">
                <h2><i class="fas fa-newspaper"></i> Resources</h2>
                <ul class="sitemap-list">
                    <li><a href="https://xnovity.com/blog">Blog Home <span class="priority">Priority: 0.7</span></a></li>
                    <li><a href="https://xnovity.com/resources/whitepapers">Whitepapers <span class="priority">Priority: 0.6</span></a></li>
                    <li><a href="https://xnovity.com/resources/ebooks">eBooks <span class="priority">Priority: 0.6</span></a></li>
                    <li><a href="https://xnovity.com/resources/webinars">Webinars <span class="priority">Priority: 0.6</span></a></li>
                    <li><a href="https://xnovity.com/resources/case-studies">Case Studies <span class="priority">Priority: 0.7</span></a></li>
                    <li><a href="https://xnovity.com/resources/industry-reports">Industry Reports <span class="priority">Priority: 0.6</span></a></li>
                </ul>
            </div>
            
            <div class="card">
                <h2><i class="fas fa-building"></i> Company</h2>
                <ul class="sitemap-list">
                    <li><a href="https://xnovity.com/about/team">Our Team <span class="priority">Priority: 0.6</span></a></li>
                    <li><a href="https://xnovity.com/about/careers">Careers <span class="priority">Priority: 0.7</span></a></li>
                    <li><a href="https://xnovity.com/about/leadership">Leadership <span class="priority">Priority: 0.5</span></a></li>
                    <li><a href="https://xnovity.com/about/partners">Partners <span class="priority">Priority: 0.6</span></a></li>
                    <li><a href="https://xnovity.com/press">Press & News <span class="priority">Priority: 0.6</span></a></li>
                    <li><a href="https://xnovity.com/events">Events <span class="priority">Priority: 0.5</span></a></li>
                </ul>
            </div>
            
            <div class="card">
                <h2><i class="fas fa-file-alt"></i> Legal</h2>
                <ul class="sitemap-list">
                    <li><a href="https://xnovity.com/terms">Terms of Service <span class="priority">Priority: 0.3</span></a></li>
                    <li><a href="https://xnovity.com/privacy">Privacy Policy <span class="priority">Priority: 0.3</span></a></li>
                    <li><a href="https://xnovity.com/cookies">Cookie Policy <span class="priority">Priority: 0.2</span></a></li>
                    <li><a href="https://xnovity.com/security">Security Policy <span class="priority">Priority: 0.3</span></a></li>
                    <li><a href="https://xnovity.com/compliance">Compliance <span class="priority">Priority: 0.3</span></a></li>
                    <li><a href="https://xnovity.com/accessibility">Accessibility <span class="priority">Priority: 0.2</span></a></li>
                </ul>
            </div>
        </div>
        
        <div class="xml-preview">
            <h2><i class="fas fa-code"></i> XML Sitemap Preview</h2>
            <pre><code><span class="xml-tag">&lt;?xml version="1.0" encoding="UTF-8"?&gt;</span>
<span class="xml-tag">&lt;urlset</span> <span class="xml-attr">xmlns=</span><span class="xml-value">"http://www.sitemaps.org/schemas/sitemap/0.9"</span><span class="xml-tag">&gt;</span>
    <span class="xml-comment">&lt;!-- Homepage --&gt;</span>
    <span class="xml-tag">&lt;url&gt;</span>
        <span class="xml-tag">&lt;loc&gt;</span><span class="xml-value">https://xnovity.com/</span><span class="xml-tag">&lt;/loc&gt;</span>
        <span class="xml-tag">&lt;lastmod&gt;</span><span class="xml-value">2025-05-28</span><span class="xml-tag">&lt;/lastmod&gt;</span>
        <span class="xml-tag">&lt;changefreq&gt;</span><span class="xml-value">daily</span><span class="xml-tag">&lt;/changefreq&gt;</span>
        <span class="xml-tag">&lt;priority&gt;</span><span class="xml-value">1.0</span><span class="xml-tag">&lt;/priority&gt;</span>
    <span class="xml-tag">&lt;/url&gt;</span>
    
    <span class="xml-comment">&lt;!-- Main Pages --&gt;</span>
    <span class="xml-tag">&lt;url&gt;</span>
        <span class="xml-tag">&lt;loc&gt;</span><span class="xml-value">https://xnovity.com/about</span><span class="xml-tag">&lt;/loc&gt;</span>
        <span class="xml-tag">&lt;lastmod&gt;</span><span class="xml-value">2025-05-20</span><span class="xml-tag">&lt;/lastmod&gt;</span>
        <span class="xml-tag">&lt;changefreq&gt;</span><span class="xml-value">monthly</span><span class="xml-tag">&lt;/changefreq&gt;</span>
        <span class="xml-tag">&lt;priority&gt;</span><span class="xml-value">0.9</span><span class="xml-tag">&lt;/priority&gt;</span>
    <span class="xml-tag">&lt;/url&gt;</span>
    
    <span class="xml-tag">&lt;url&gt;</span>
        <span class="xml-tag">&lt;loc&gt;</span><span class="xml-value">https://xnovity.com/services</span><span class="xml-tag">&lt;/loc&gt;</span>
        <span class="xml-tag">&lt;lastmod&gt;</span><span class="xml-value">2025-05-15</span><span class="xml-tag">&lt;/lastmod&gt;</span>
        <span class="xml-tag">&lt;changefreq&gt;</span><span class="xml-value">weekly</span><span class="xml-tag">&lt;/changefreq&gt;</span>
        <span class="xml-tag">&lt;priority&gt;</span><span class="xml-value">0.9</span><span class="xml-tag">&lt;/priority&gt;</span>
    <span class="xml-tag">&lt;/url&gt;</span>
    
    <span class="xml-comment">&lt;!-- Services --&gt;</span>
    <span class="xml-tag">&lt;url&gt;</span>
        <span class="xml-tag">&lt;loc&gt;</span><span class="xml-value">https://xnovity.com/services/ai-solutions</span><span class="xml-tag">&lt;/loc&gt;</span>
        <span class="xml-tag">&lt;lastmod&gt;</span><span class="xml-value">2025-05-10</span><span class="xml-tag">&lt;/lastmod&gt;</span>
        <span class="xml-tag">&lt;changefreq&gt;</span><span class="xml-value">weekly</span><span class="xml-tag">&lt;/changefreq&gt;</span>
        <span class="xml-tag">&lt;priority&gt;</span><span class="xml-value">0.8</span><span class="xml-tag">&lt;/priority&gt;</span>
    <span class="xml-tag">&lt;/url&gt;</span>
    
    <span class="xml-tag">&lt;url&gt;</span>
        <span class="xml-tag">&lt;loc&gt;</span><span class="xml-value">https://xnovity.com/services/data-analytics</span><span class="xml-tag">&lt;/loc&gt;</span>
        <span class="xml-tag">&lt;lastmod&gt;</span><span class="xml-value">2025-05-12</span><span class="xml-tag">&lt;/lastmod&gt;</span>
        <span class="xml-tag">&lt;changefreq&gt;</span><span class="xml-value">weekly</span><span class="xml-tag">&lt;/changefreq&gt;</span>
        <span class="xml-tag">&lt;priority&gt;</span><span class="xml-value">0.8</span><span class="xml-tag">&lt;/priority&gt;</span>
    <span class="xml-tag">&lt;/url&gt;</span>
    
    <span class="xml-comment">&lt;!-- ... Additional URLs ... --&gt;</span>
    
    <span class="xml-comment">&lt;!-- Blog Posts (Example) --&gt;</span>
    <span class="xml-tag">&lt;url&gt;</span>
        <span class="xml-tag">&lt;loc&gt;</span><span class="xml-value">https://xnovity.com/blog/future-of-ai</span><span class="xml-tag">&lt;/loc&gt;</span>
        <span class="xml-tag">&lt;lastmod&gt;</span><span class="xml-value">2025-05-25</span><span class="xml-tag">&lt;/lastmod&gt;</span>
        <span class="xml-tag">&lt;changefreq&gt;</span><span class="xml-value">monthly</span><span class="xml-tag">&lt;/changefreq&gt;</span>
        <span class="xml-tag">&lt;priority&gt;</span><span class="xml-value">0.7</span><span class="xml-tag">&lt;/priority&gt;</span>
    <span class="xml-tag">&lt;/url&gt;</span>
    
    <span class="xml-comment">&lt;!-- Legal Pages --&gt;</span>
    <span class="xml-tag">&lt;url&gt;</span>
        <span class="xml-tag">&lt;loc&gt;</span><span class="xml-value">https://xnovity.com/privacy</span><span class="xml-tag">&lt;/loc&gt;</span>
        <span class="xml-tag">&lt;lastmod&gt;</span><span class="xml-value">2025-01-15</span><span class="xml-tag">&lt;/lastmod&gt;</span>
        <span class="xml-tag">&lt;changefreq&gt;</span><span class="xml-value">yearly</span><span class="xml-tag">&lt;/changefreq&gt;</span>
        <span class="xml-tag">&lt;priority&gt;</span><span class="xml-value">0.3</span><span class="xml-tag">&lt;/priority&gt;</span>
    <span class="xml-tag">&lt;/url&gt;</span>
<span class="xml-tag">&lt;/urlset&gt;</span></code></pre>
        </div>
        
        <div class="actions">
            <button class="btn"><i class="fas fa-download"></i> Download XML Sitemap</button>
            <button class="btn btn-secondary"><i class="fas fa-sync-alt"></i> Generate Sitemap Index</button>
            <button class="btn btn-secondary"><i class="fas fa-search"></i> Validate with Google</button>
        </div>
        
        <div class="footer">
            <p>© 2025 Xnovity Technologies. All rights reserved. | Sitemap last generated: May 28, 2025</p>
            <p>For optimal SEO results, update your sitemap whenever you add new content or change site structure.</p>
        </div>
    </div>

    <script>
        // Function to handle XML download
        document.querySelector('.btn').addEventListener('click', function() {
            const xmlContent = `<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
    <!-- Homepage -->
    <url>
        <loc>https://xnovity.com/</loc>
        <lastmod>2025-05-28</lastmod>
        <changefreq>daily</changefreq>
        <priority>1.0</priority>
    </url>
    
    <!-- Main Pages -->
    <url>
        <loc>https://xnovity.com/about</loc>
        <lastmod>2025-05-20</lastmod>
        <changefreq>monthly</changefreq>
        <priority>0.9</priority>
    </url>
    
    <url>
        <loc>https://xnovity.com/services</loc>
        <lastmod>2025-05-15</lastmod>
        <changefreq>weekly</changefreq>
        <priority>0.9</priority>
    </url>
    
    <url>
        <loc>https://xnovity.com/solutions</loc>
        <lastmod>2025-05-10</lastmod>
        <changefreq>weekly</changefreq>
        <priority>0.8</priority>
    </url>
    
    <url>
        <loc>https://xnovity.com/case-studies</loc>
        <lastmod>2025-05-12</lastmod>
        <changefreq>monthly</changefreq>
        <priority>0.8</priority>
    </url>
    
    <url>
        <loc>https://xnovity.com/contact</loc>
        <lastmod>2025-04-20</lastmod>
        <changefreq>monthly</changefreq>
        <priority>0.7</priority>
    </url>
    
    <!-- Services -->
    <url>
        <loc>https://xnovity.com/services/ai-solutions</loc>
        <lastmod>2025-05-10</lastmod>
        <changefreq>weekly</changefreq>
        <priority>0.8</priority>
    </url>
    
    <url>
        <loc>https://xnovity.com/services/data-analytics</loc>
        <lastmod>2025-05-12</lastmod>
        <changefreq>weekly</changefreq>
        <priority>0.8</priority>
    </url>
    
    <url>
        <loc>https://xnovity.com/services/cloud-integration</loc>
        <lastmod>2025-05-08</lastmod>
        <changefreq>weekly</changefreq>
        <priority>0.8</priority>
    </url>
    
    <url>
        <loc>https://xnovity.com/services/cybersecurity</loc>
        <lastmod>2025-05-05</lastmod>
        <changefreq>weekly</changefreq>
        <priority>0.8</priority>
    </url>
    
    <url>
        <loc>https://xnovity.com/services/digital-transformation</loc>
        <lastmod>2025-04-28</lastmod>
        <changefreq>monthly</changefreq>
        <priority>0.8</priority>
    </url>
    
    <url>
        <loc>https://xnovity.com/services/custom-development</loc>
        <lastmod>2025-04-25</lastmod>
        <changefreq>monthly</changefreq>
        <priority>0.8</priority>
    </url>
    
    <!-- Solutions -->
    <url>
        <loc>https://xnovity.com/solutions/enterprise</loc>
        <lastmod>2025-05-05</lastmod>
        <changefreq>monthly</changefreq>
        <priority>0.8</priority>
    </url>
    
    <url>
        <loc>https://xnovity.com/solutions/smb</loc>
        <lastmod>2025-05-03</lastmod>
        <changefreq>monthly</changefreq>
        <priority>0.8</priority>
    </url>
    
    <url>
        <loc>https://xnovity.com/solutions/healthcare</loc>
        <lastmod>2025-04-20</lastmod>
        <changefreq>monthly</changefreq>
        <priority>0.7</priority>
    </url>
    
    <url>
        <loc>https://xnovity.com/solutions/fintech</loc>
        <lastmod>2025-04-18</lastmod>
        <changefreq>monthly</changefreq>
        <priority>0.7</priority>
    </url>
    
    <url>
        <loc>https://xnovity.com/solutions/retail</loc>
        <lastmod>2025-04-15</lastmod>
        <changefreq>monthly</changefreq>
        <priority>0.7</priority>
    </url>
    
    <url>
        <loc>https://xnovity.com/solutions/iot</loc>
        <lastmod>2025-04-10</lastmod>
        <changefreq>monthly</changefreq>
        <priority>0.7</priority>
    </url>
    
    <!-- Resources -->
    <url>
        <loc>https://xnovity.com/blog</loc>
        <lastmod>2025-05-28</lastmod>
        <changefreq>daily</changefreq>
        <priority>0.7</priority>
    </url>
    
    <url>
        <loc>https://xnovity.com/resources/whitepapers</loc>
        <lastmod>2025-05-15</lastmod>
        <changefreq>monthly</changefreq>
        <priority>0.6</priority>
    </url>
    
    <url>
        <loc>https://xnovity.com/resources/ebooks</loc>
        <lastmod>2025-05-10</lastmod>
        <changefreq>monthly</changefreq>
        <priority>0.6</priority>
    </url>
    
    <url>
        <loc>https://xnovity.com/resources/webinars</loc>
        <lastmod>2025-05-18</lastmod>
        <changefreq>weekly</changefreq>
        <priority>0.6</priority>
    </url>
    
    <url>
        <loc>https://xnovity.com/resources/case-studies</loc>
        <lastmod>2025-05-20</lastmod>
        <changefreq>monthly</changefreq>
        <priority>0.7</priority>
    </url>
    
    <url>
        <loc>https://xnovity.com/resources/industry-reports</loc>
        <lastmod>2025-04-30</lastmod>
        <changefreq>monthly</changefreq>
        <priority>0.6</priority>
    </url>
    
    <!-- Company -->
    <url>
        <loc>https://xnovity.com/about/team</loc>
        <lastmod>2025-04-15</lastmod>
        <changefreq>monthly</changefreq>
        <priority>0.6</priority>
    </url>
    
    <url>
        <loc>https://xnovity.com/about/careers</loc>
        <lastmod>2025-05-28</lastmod>
        <changefreq>weekly</changefreq>
        <priority>0.7</priority>
    </url>
    
    <url>
        <loc>https://xnovity.com/about/leadership</loc>
        <lastmod>2025-03-20</lastmod>
        <changefreq>yearly</changefreq>
        <priority>0.5</priority>
    </url>
    
    <url>
        <loc>https://xnovity.com/about/partners</loc>
        <lastmod>2025-05-22</lastmod>
        <changefreq>monthly</changefreq>
        <priority>0.6</priority>
    </url>
    
    <url>
        <loc>https://xnovity.com/press</loc>
        <lastmod>2025-05-28</lastmod>
        <changefreq>daily</changefreq>
        <priority>0.6</priority>
    </url>
    
    <url>
        <loc>https://xnovity.com/events</loc>
        <lastmod>2025-05-25</lastmod>
        <changefreq>weekly</changefreq>
        <priority>0.5</priority>
    </url>
    
    <!-- Legal -->
    <url>
        <loc>https://xnovity.com/terms</loc>
        <lastmod>2025-01-10</lastmod>
        <changefreq>yearly</changefreq>
        <priority>0.3</priority>
    </url>
    
    <url>
        <loc>https://xnovity.com/privacy</loc>
        <lastmod>2025-01-15</lastmod>
        <changefreq>yearly</changefreq>
        <priority>0.3</priority>
    </url>
    
    <url>
        <loc>https://xnovity.com/cookies</loc>
        <lastmod>2025-01-10</lastmod>
        <changefreq>yearly</changefreq>
        <priority>0.2</priority>
    </url>
    
    <url>
        <loc>https://xnovity.com/security</loc>
        <lastmod>2025-01-20</lastmod>
        <changefreq>yearly</changefreq>
        <priority>0.3</priority>
    </url>
    
    <url>
        <loc>https://xnovity.com/compliance</loc>
        <lastmod>2025-01-15</lastmod>
        <changefreq>yearly</changefreq>
        <priority>0.3</priority>
    </url>
    
    <url>
        <loc>https://xnovity.com/accessibility</loc>
        <lastmod>2025-01-10</lastmod>
        <changefreq>yearly</changefreq>
        <priority>0.2</priority>
    </url>
    
    <!-- Service Pages -->
    <url>
        <loc>https://www.xnovity.com/index.html</loc>
        <priority>1.0</priority>
        <changefreq>daily</changefreq>
        <geo>IN, US, CA, UK, AE</geo>
    </url>
    <url>
        <loc>https://www.xnovity.com/web-design.html</loc>
        <priority>0.95</priority>
        <changefreq>weekly</changefreq>
        <geo>IN, US, CA, UK, AE</geo>
    </url>
    <url>
        <loc>https://www.xnovity.com/seo.html</loc>
        <priority>0.95</priority>
        <changefreq>weekly</changefreq>
        <geo>IN, US, CA, UK, AE</geo>
    </url>
    <url>
        <loc>https://www.xnovity.com/marketing.html</loc>
        <priority>0.95</priority>
        <changefreq>weekly</changefreq>
        <geo>IN, US, CA, UK, AE</geo>
    </url>
    <url>
        <loc>https://www.xnovity.com/it-consulting.html</loc>
        <priority>0.95</priority>
        <changefreq>weekly</changefreq>
        <geo>IN, US, CA, UK, AE</geo>
    </url>
    <url>
        <loc>https://www.xnovity.com/intense.html</loc>
        <priority>0.98</priority>
        <changefreq>weekly</changefreq>
        <geo>IN, US, CA, UK, AE</geo>
    </url>
    <url>
        <loc>https://www.xnovity.com/cloud-solutions.html</loc>
        <priority>0.97</priority>
        <changefreq>weekly</changefreq>
        <geo>IN, US, CA, UK, AE</geo>
    </url>
    <url>
        <loc>https://www.xnovity.com/ai-tools.html</loc>
        <priority>0.96</priority>
        <changefreq>weekly</changefreq>
        <geo>IN, US, CA, UK, AE</geo>
    </url>
    <url>
        <loc>https://www.xnovity.com/hardware.html</loc>
        <priority>0.96</priority>
        <changefreq>weekly</changefreq>
        <geo>IN, US, CA, UK, AE</geo>
    </url>
    <url>
        <loc>https://www.xnovity.com/accessories.html</loc>
        <priority>0.96</priority>
        <changefreq>weekly</changefreq>
        <geo>IN, US, CA, UK, AE</geo>
    </url>
    <url>
        <loc>https://www.xnovity.com/Articles.html</loc>
        <priority>0.90</priority>
        <changefreq>monthly</changefreq>
        <geo>IN, US, CA, UK, AE</geo>
    </url>
</urlset>`;
            
            const blob = new Blob([xmlContent], { type: 'application/xml' });
            const url = URL.createObjectURL(blob);
            
            const a = document.createElement('a');
            a.href = url;
            a.download = 'xnovity-sitemap.xml';
            document.body.appendChild(a);
            a.click();
            
            // Clean up
            setTimeout(() => {
                document.body.removeChild(a);
                URL.revokeObjectURL(url);
                
                // Show success message
                alert('Sitemap downloaded successfully! Place it in your website root directory.');
            }, 100);
        });
    </script>
</body>
</html>