diff --git a/astro.config.mjs b/astro.config.mjs index 79a76990..79d6c296 100644 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -64,6 +64,7 @@ export default defineConfig({ items: [ { label: 'contribute', slug: 'project/contribute' }, { label: 'development', slug: 'project/development' }, + { label: 'maintain', slug: 'project/maintain' }, { label: 'code-of-conduct', slug: 'project/code-of-conduct' }, { label: 'implementations', slug: 'project/implementations' }, ], diff --git a/src/content/docs/project/development.mdx b/src/content/docs/project/development.mdx index 19334102..312fb18c 100644 --- a/src/content/docs/project/development.mdx +++ b/src/content/docs/project/development.mdx @@ -21,7 +21,10 @@ It handles navigation, search, dark mode, and supports [Tailwind CSS](https://ta ## MDX Files -Our documentation pages are largely written using the **MDX** (`.mdx`) format. This format supports Markdown with the additional ability to include components and custom elements directly in the content. This allows us to embed images, asides, and other interactive elements easily. +Our documentation pages are largely written using the [MDX (`.mdx`) format](https://mdxjs.com/). +This format supports Markdown with the additional ability to include components +and custom elements directly in the content. This allows us to embed images, +asides, and other interactive elements easily.