fix(seo): Block crawlers and add sitemap
- Set robots meta tag to noindex, nofollow (site not live) - Update robots.txt with instructions for going live - Add sitemap.xml with all marketing pages 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
@@ -23,7 +23,7 @@
|
||||
<meta name="twitter:image" content="https://smoothschedule.com/og-image.png" />
|
||||
|
||||
<!-- Additional SEO -->
|
||||
<meta name="robots" content="index, follow" />
|
||||
<meta name="robots" content="noindex, nofollow" />
|
||||
<meta name="author" content="Smooth Schedule Inc." />
|
||||
<link rel="canonical" href="https://smoothschedule.com" />
|
||||
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
|
||||
|
||||
@@ -1,5 +1,12 @@
|
||||
# robots.txt - SmoothSchedule
|
||||
# Deny all robots while in development
|
||||
# Currently blocking all crawlers - site not yet live
|
||||
|
||||
User-agent: *
|
||||
Disallow: /
|
||||
|
||||
# When ready to go live, replace above with:
|
||||
# User-agent: *
|
||||
# Allow: /
|
||||
# Disallow: /api/
|
||||
# Disallow: /admin/
|
||||
# Sitemap: https://smoothschedule.com/sitemap.xml
|
||||
|
||||
51
frontend/public/sitemap.xml
Normal file
51
frontend/public/sitemap.xml
Normal file
@@ -0,0 +1,51 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
|
||||
<url>
|
||||
<loc>https://smoothschedule.com/</loc>
|
||||
<lastmod>2024-12-04</lastmod>
|
||||
<changefreq>weekly</changefreq>
|
||||
<priority>1.0</priority>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://smoothschedule.com/features</loc>
|
||||
<lastmod>2024-12-04</lastmod>
|
||||
<changefreq>monthly</changefreq>
|
||||
<priority>0.8</priority>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://smoothschedule.com/pricing</loc>
|
||||
<lastmod>2024-12-04</lastmod>
|
||||
<changefreq>monthly</changefreq>
|
||||
<priority>0.8</priority>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://smoothschedule.com/about</loc>
|
||||
<lastmod>2024-12-04</lastmod>
|
||||
<changefreq>monthly</changefreq>
|
||||
<priority>0.6</priority>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://smoothschedule.com/contact</loc>
|
||||
<lastmod>2024-12-04</lastmod>
|
||||
<changefreq>monthly</changefreq>
|
||||
<priority>0.6</priority>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://smoothschedule.com/signup</loc>
|
||||
<lastmod>2024-12-04</lastmod>
|
||||
<changefreq>monthly</changefreq>
|
||||
<priority>0.9</priority>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://smoothschedule.com/privacy</loc>
|
||||
<lastmod>2024-12-04</lastmod>
|
||||
<changefreq>yearly</changefreq>
|
||||
<priority>0.3</priority>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://smoothschedule.com/terms</loc>
|
||||
<lastmod>2024-12-04</lastmod>
|
||||
<changefreq>yearly</changefreq>
|
||||
<priority>0.3</priority>
|
||||
</url>
|
||||
</urlset>
|
||||
Reference in New Issue
Block a user