<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url><loc>https://www.corerisk360.com/</loc><priority>1.0</priority></url>
<url><loc>https://www.corerisk360.com/landing.html</loc><priority>0.9</priority></url>
<url><loc>https://app.corerisk360.com/login.html</loc><priority>0.8</priority></url>
</urlset>
```
content = '''<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url><loc>https://www.corerisk360.com/</loc></url>
<url><loc>https://www.corerisk360.com/landing.html</loc></url>
<url><loc>https://app.corerisk360.com/login.html</loc></url>
</urlset>'''

with open('frontend/sitemap.xml', 'w', encoding='utf-8') as f:
    f.write(content)

print("Done!")
```

Then run:
```
python fix_sitemap.py
```

Then push:
```
git add .
git commit -m "Fix sitemap"
git push

