> ## Documentation Index
> Fetch the complete documentation index at: https://docs.hackutd.co/llms.txt
> Use this file to discover all available pages before exploring further.

# Documentation

> Docs about the docs

Writing the documentation is extremely important yet probably the hardest part of development. The Jury docs were originally hosted at [jury.mikz.dev](https://jury.mikz.dev) using [Docusaurus](https://docusaurus.io/) in the `docs/docs` directory of the Jury repository, where each markdown file represented a single page in the documentation, with the configuration at `docs/docusaurus.config.ts`. The docs now live in the [HackUTD docs repository](https://github.com/hackutd/docs) under the `jury` directory, built with [Mintlify](https://mintlify.com/). Each MDX file represents a single page, and navigation is configured in `docs.json`.

## Fun thing

If you want to see how many words is in the documentation, run this command in the `jury` directory of the docs repository:

```bash theme={null}
find . -type f -name "*.mdx" | xargs wc -w
```
