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

# Adding Documentation

> Simple guide to adding new documentation pages

## Quick Steps

1. **Create your .mdx file** in the appropriate directory:
   * User guides: `user-guides/clinical/`, `user-guides/pharmacy/`, or `user-guides/mobile/`
   * Technical docs: `technical/general/` or `technical/mobile/`
   * Standards: `standards/`

2. **Add to mint.json navigation** - find the right group and add your file:
   ```json theme={null}
   {
     "group": "User Guides - Clinical",
     "pages": [
       "user-guides/clinical/your-new-file"
     ]
   }
   ```

3. **File structure** - start each .mdx file with:
   ```markdown theme={null}
   ---
   title: "Your Page Title"
   description: "Brief description"
   ---
   ```

That's it! The mint.json file controls what appears in the navigation sidebar. Each page path corresponds to an .mdx file path.
