This directory contains the Nextra-based documentation site for eventkit.
# Install dependencies
pnpm install
# Start dev server
pnpm dev
# Build for production
pnpm buildThe dev server will start at http://localhost:3000
- Nextra v4.0.0 - Documentation framework
- Next.js 15.1.6 - React framework
- React 19 - UI library
- pnpm - Package manager
docs/
├── app/ # Next.js app directory
│ ├── layout.tsx # Root layout with navigation
│ └── [[...mdxPath]]/ # Dynamic MDX page routing
├── content/ # MDX documentation files
│ ├── _meta.json # Navigation structure
│ └── *.mdx # Documentation pages
├── public/ # Static assets
├── next.config.mjs # Next.js configuration
├── tsconfig.json # TypeScript configuration
└── package.json # Dependencies and scripts
The site is automatically deployed to GitHub Pages at https://prosdevlab.github.io/eventkit/ when changes are pushed to the main branch.
- Create an MDX file in
content/ - Add navigation entry to
content/_meta.json - Write content using MDX syntax
- Test locally with
pnpm dev
See Nextra documentation for more details on MDX features and components.