This is the source code for the AI DevKit static website built with Next.js.
npm install
npm run devOpen http://localhost:3000 to view the site.
npm run buildThis generates static files in the out/ directory.
The site is automatically deployed to GitHub Pages when changes are pushed to the main branch.
- Go to your repository settings on GitHub
- Navigate to Settings > Pages
- Under Source, select GitHub Actions
- The workflow will run automatically on push to main
web/
├── app/ # Next.js app directory
│ ├── docs/ # Documentation pages
│ ├── roadmap/ # Roadmap page
│ ├── vision/ # Vision page
│ ├── layout.tsx # Root layout
│ └── page.tsx # Landing page
├── components/ # Reusable components
├── content/ # Markdown content
│ ├── docs/ # Documentation files
│ ├── pages/ # Static pages
│ └── roadmap/ # Roadmap items
├── lib/ # Utilities and helpers
│ └── content/ # Content loading utilities
└── public/ # Static assets
All content is managed via Markdown files with frontmatter:
- Documentation:
content/docs/*.md - Pages (vision, etc):
content/pages/*.md - Roadmap items:
content/roadmap/*.md
Create a new file in content/docs/:
---
title: Your Doc Title
description: Brief description
slug: your-doc-slug
order: 1
---
# Your content here...Create a new file in content/roadmap/:
---
title: Feature Name
status: planned | in-progress | completed | on-hold
timeframe: Q1 2026
priority: high | medium | low
order: 1
---
Feature description...The site includes:
- Comprehensive metadata
- Sitemap at
/sitemap.xml - Robots.txt at
/robots.txt - Open Graph tags for social sharing
- Semantic HTML and ARIA labels