# {{projectName}} / {{appName}}

Documentation site (template: **frontend-docs**).

`src/pages/docs/[...slug].tsx` is the catch-all doc renderer.
`getStaticPaths` enumerates every doc URL at build time and
`voltro build` pre-renders them all — the result is a static site
you can deploy anywhere.

```bash
pnpm install
pnpm --filter @{{projectName}}/{{appName}} dev
# → http://localhost:5173
# → http://localhost:5173/docs/intro/getting-started
```

The starter ships a tiny in-file `DOCS` array. Replace it with a
real loader (markdown reader, CMS query, database fetch) — the
component contract stays the same.
