← Course Index

SEO Checklist

Technical SEO Pre-Launch Audit Checklist

Component Requirement Example Implementation / Rule
robots.txt Guide crawlers, disallow private pages, reference sitemap URL. Disallow: /admin/
Sitemap: https://app.com/sitemap.xml
sitemap.xml Expose crawlable public URLs. Exclude dashboard routes. XML containing <loc>, <lastmod>, <priority> tags.
Canonical URLs Ensure duplicate pages resolve to one authority. Prevent duplicate penalty. <link rel="canonical" href="https://app.com/blog" />
Structured Data Inject JSON-LD schemas in head for rich engine snippets (reviews, FAQ). <script type="application/ld+json">...</script>
Meta Tags Provide unique titles, descriptions, and Open Graph share headers. <meta name="description" content="..." />

Core Web Vitals Optimization Guidelines

1. LCP (Largest Contentful Paint) Fixes

2. CLS (Cumulative Layout Shift) Fixes

3. INP (Interaction to Next Paint) Fixes

GitHub Actions Cheat Sheet Next: Security Checklist →