| 1 | import type { DocsGuideDict } from "../types"; |
| 2 | |
| 3 | /** |
| 4 | * English reference dictionary for the docs "Getting started" page. |
| 5 | * Copy moved verbatim from `app/[locale]/docs/guide/page.tsx` — any wording |
| 6 | * change belongs in its own commit, never mixed into a structural move. |
| 7 | */ |
| 8 | export const docsGuide: DocsGuideDict = { |
| 9 | metaTitle: "Getting started · Codewhale Docs", |
| 10 | metaDescription: |
| 11 | "Install Codewhale, connect a model, and start your first task. Add a Fleet when you want a roster of models and roles.", |
| 12 | bodyClassName: "text-ink-soft leading-relaxed", |
| 13 | overviewTitle: "Getting started", |
| 14 | overviewLead: |
| 15 | "Install Codewhale, connect your model, and give it a task. Fleet setup is optional.", |
| 16 | sessionTitle: "Watch a real session", |
| 17 | sessionLead: |
| 18 | "Follow a task from the first request to the finished result.", |
| 19 | nextTitle: "Where next", |
| 20 | sourceNote: |
| 21 | "For more detail, see the user guide and keyboard shortcuts in the documentation.", |
| 22 | }; |
| 23 |