Astro page routes — each file maps 1:1 to a URL path.
| File / Directory | Responsibility |
|---|---|
index.astro | Home page (/) |
about.astro | About page (/about) |
services.astro | Services overview page (/services) |
services/ | Dynamic service detail sub-pages (/services/[slug]) |
case-studies.astro | Case studies listing page (/case-studies) |
book.astro | Book-a-call page (/book) |
vacancies.astro | Vacancies listing page (/vacancies) |
vacancies/ | Dynamic vacancy detail sub-pages (/vacancies/[slug]) |
contact.astro | Contact page with enquiry form (/contact) |
privacy-policy.astro | GDPR Privacy Policy page (/privacy-policy) |
terms.astro | Terms of Service page (/terms) |
robots.txt.ts | Dynamically generated robots.txt endpoint |
_docs/ | Internal dev-only documentation pages (excluded from routing) |