Getting Started

Atlas is an Astro-first documentation template with MDX content collections, a generated sidebar, and a prebuilt docs layout.

Prerequisites

  • Node.js 22.12.0 or newer
  • npm

Quick Start

git clone https://github.com/dqnamo/atlas.git
cd atlas
npm install
npm run dev

Open http://localhost:4321.

Project Layout

  • src/pages/index.astro: homepage and CTA buttons
  • src/pages/docs/[...slug].astro: docs page renderer
  • src/content/docs: documentation content (.md and .mdx)
  • src/content/sidebar-links: additional sidebar links
  • config.json: site title and branding config

Build and Preview

npm run build
npm run preview

Next Steps

dqnamo