<?xml version="1.0" encoding="UTF-8"?>
<!--
  Only routes that render something. /visionary and /video-gen were listed here
  while App.tsx answers both with <Navigate to="/" replace />, so search engines
  were being pointed at two URLs that redirect to the homepage: duplicate-content
  signals, wasted crawl budget and soft-404s in Search Console.

  /feed is new to this file because it was behind auth until now. It is the
  community page and the only content-rich indexable surface a UGC product has.

  /dashboard was the SAME BUG this file's comment claims to have fixed, missed on the
  pass that caught /visionary and /video-gen. It is an authed route: App.tsx answers
  it with `user ? <DashboardPage /> : <LandingPage />`, so a crawler is logged out and
  gets the landing page, served with `robots: index, follow` and a canonical pointing
  at `/`. Measured on production 2026-08-11. The sitemap was therefore asking Google
  to crawl a page whose own canonical sends it somewhere else, which is wasted crawl
  budget on a surface that is nobody's entry point. Removed.

  THE NAMESPACE WAS ALSO WRONG: `www.sitemap.org`, singular, where the protocol
  defines `www.sitemaps.org`. Google is lenient enough to have parsed it anyway, which
  is why nothing complained, but it is invalid against the schema and is the kind of
  thing Search Console reports the moment a sitemap is actually submitted.
-->
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
  <url>
    <loc>https://0thinking.ai/</loc>
    <changefreq>weekly</changefreq>
    <priority>1.0</priority>
  </url>
  <url>
    <loc>https://0thinking.ai/song-genie</loc>
    <changefreq>weekly</changefreq>
    <priority>0.9</priority>
  </url>
  <url>
    <loc>https://0thinking.ai/build</loc>
    <changefreq>weekly</changefreq>
    <priority>0.9</priority>
  </url>
  <url>
    <loc>https://0thinking.ai/feed</loc>
    <changefreq>daily</changefreq>
    <priority>0.8</priority>
  </url>
  <url>
    <loc>https://0thinking.ai/about</loc>
    <changefreq>monthly</changefreq>
    <priority>0.5</priority>
  </url>
  <url>
    <loc>https://0thinking.ai/contact</loc>
    <changefreq>monthly</changefreq>
    <priority>0.4</priority>
  </url>
  <url>
    <loc>https://0thinking.ai/privacy</loc>
    <changefreq>yearly</changefreq>
    <priority>0.3</priority>
  </url>
  <url>
    <loc>https://0thinking.ai/terms</loc>
    <changefreq>yearly</changefreq>
    <priority>0.3</priority>
  </url>
</urlset>
