fix: seo fixes

don't index static language urls (doesn't do anything) - robots.txt & sitemap.xml
This commit is contained in:
Maya 2025-10-19 18:36:45 +03:00
parent 10b8811fc4
commit cf2e351424
No known key found for this signature in database
3 changed files with 48 additions and 0 deletions

View File

@ -143,6 +143,7 @@
/> />
<meta property="twitter:image" content={featuredImage} /> <meta property="twitter:image" content={featuredImage} />
<link rel="manifest" href="/manifest.json" /> <link rel="manifest" href="/manifest.json" />
<link rel="canonical" href="https://vert.sh/" />
{#if enablePlausible} {#if enablePlausible}
<script <script
defer defer

15
static/robots.txt Normal file
View File

@ -0,0 +1,15 @@
User-agent: *
Allow: /
# language urls (doesn't actually change language when visiting)
# should prob be auto-generated?
Disallow: /es/
Disallow: /fr/
Disallow: /de/
Disallow: /it/
Disallow: /hr/
Disallow: /tr/
Disallow: /ja/
Disallow: /el/
Sitemap: https://vert.sh/sitemap.xml

32
static/sitemap.xml Normal file
View File

@ -0,0 +1,32 @@
<?xml version="1.0" encoding="UTF-8"?>
<urlset
xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd">
<url>
<loc>https://vert.sh/</loc>
<lastmod>2025-10-17T19:23:05+00:00</lastmod>
<priority>1.00</priority>
</url>
<url>
<loc>https://vert.sh/convert/</loc>
<lastmod>2025-10-17T19:23:05+00:00</lastmod>
<priority>0.80</priority>
</url>
<url>
<loc>https://vert.sh/settings/</loc>
<lastmod>2025-10-17T19:23:05+00:00</lastmod>
<priority>0.80</priority>
</url>
<url>
<loc>https://vert.sh/about/</loc>
<lastmod>2025-10-17T19:23:05+00:00</lastmod>
<priority>0.80</priority>
</url>
<url>
<loc>https://vert.sh/privacy/</loc>
<lastmod>2025-10-17T19:23:05+00:00</lastmod>
<priority>0.80</priority>
</url>
</urlset>