https://github.com/datagrove/learngrove-support
https://github.com/datagrove/learngrove-support
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/datagrove/learngrove-support
- Owner: datagrove
- Created: 2024-07-24T21:31:16.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-10-31T17:03:22.000Z (over 1 year ago)
- Last Synced: 2025-03-27T04:41:36.182Z (about 1 year ago)
- Language: MDX
- Size: 235 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
[](https://starlight.astro.build)
## 🚀 Project Structure
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](https://starlight-utils.pages.dev/docs/) to configure the sidebars and nav links.