Inside of your Astro + Starlight project, you'll see the following folders and files:
.
βββ public/
βββ src/
β βββ assets/
β βββ content/
β β βββ docs/
β β β βββ creators/
β β β β βββ getting-started.md
β β β β βββ {Add more pages/guides here}
β β β βββ learners/
β β β βββ getting-started.md
β β β βββ {Add more pages/guides here}
β β βββ config.ts
β βββ env.d.ts
βββ astro.config.mjs
βββ package.json
βββ tsconfig.json
Starlight looks for .md or .mdx files in the src/content/docs/ directory. Each file is exposed as a route based on its file name.
Images can be added to src/assets/ and embedded in Markdown with a relative link.
Static assets, like favicons, can be placed in the public/ directory.
This project uses StarlightUtils to configure the sidebars and nav links.