{"success":true,"prompt":"/sitemap.xml","response":"It looks like you're looking for a **sitemap**, which is essentially a blueprint of a website intended to help search engines like Google crawl and index content more efficiently.\n\nSince I am an AI and not a traditional website with a static directory, I don't have a physical `sitemap.xml` file for you to view. However, I can certainly explain how they work or help you build one for your own project!\n\n### What is a Sitemap?\nA sitemap is an XML file that lists the URLs for a site along with additional metadata about each URL:\n* **Last updated:** When the page was last modified.\n* **Change frequency:** How often the page is likely to change.\n* **Priority:** How important the URL is relative to other URLs on the site.\n\n\n\n---\n\n### A Simple Example\nIf you were building a sitemap for a personal blog, the code would look something like this:\n\n```xml\n<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<urlset xmlns=\"http://www.sitemaps.org/schemas/sitemap/0.9\">\n   <url>\n      <loc>https://www.example.com/</loc>\n      <lastmod>2026-04-06</lastmod>\n      <changefreq>daily</changefreq>\n      <priority>1.0</priority>\n   </url>\n   <url>\n      <loc>https://www.example.com/about</loc>\n      <lastmod>2026-01-10</lastmod>\n      <changefreq>monthly</changefreq>\n      <priority>0.8</priority>\n   </url>\n</urlset>\n```\n\n### Why do you need one?\n1.  **Large Sites:** If your site has a massive archive, sitemaps ensure new pages don't get overlooked.\n2.  **Poor Linking:** If your pages aren't well-linked to each other, a sitemap acts as a direct map for crawlers.\n3.  **New Sites:** Since new sites often lack external backlinks, a sitemap helps search engines find them faster.\n\nAre you trying to generate a sitemap for a specific website, or are you troubleshooting an SEO issue?"}