Contains all Astro page routes and API endpoints.
*.astro: Static pages rendered at build time.[slug].astro: Dynamic routes populated by Content Collections.api/*.ts: Serverless endpoints (e.g., forms) where export const prerender = false; is set.flowchart LR
A[Astro Router] --> B(Static Pages)
A --> C(Dynamic Slugs)
A --> D(Serverless APIs)