sitemap.xml
A `sitemap.xml` file is an important component for search engine optimization (SEO) and helps search engines understand the structure of your website. Below is a simple example of what a `sitemap.xml` might look like:
```xml
https://www.example.com/
2023-10-01
daily
1.0
https://www.example.com/about
2023-09-15
monthly
0.8
https://www.example.com/contact
2023-09-20
yearly
0.5
https://www.example.com/blog
2023-10-05
weekly
0.7
```
In this example:
- <urlset>: The root element that contains all the URLs.
- <url>: Each URL entry in the sitemap.
- <loc>: The location of the URL.
- <lastmod>: The date the page was last modified.
- <changefreq>: How frequently the page is likely to change (e.g., daily, weekly, monthly).
- <priority>: The priority of the URL relative to other URLs on the site (between 0.0 and 1.0).
Make sure to update the URLs and attributes according