Overview
The project uses Astro’s file-based routing system where.astro files in src/pages/ automatically become routes on your website.
Available Pages
Homepage
The main landing page at
/Blog Index
Blog listing page at
/blogBlog Post
Dynamic blog post pages at
/blog/[slug]YouTube Policy
Video monetization policy page at
/youtube404 Error Page
Custom error page for missing routes
File-Based Routing
Astro creates routes based on file paths:Page Structure
All pages follow a consistent structure:Dynamic Routes
The blog uses dynamic routing with[slug].astro:
src/pages/blog/[slug].astro
SEO Integration
All pages use the SEO component for metadata:Related Documentation
Base Layout
Learn about the base layout structure
Blog System
Understand the blog architecture
