Add documentation pages with interactive architecture diagram

- /docs route with sidebar navigation and index page
- Architecture section: system overview with React Flow diagram, data flow, database schema
- API reference, configuration guide, and self-hosting docs for Go DNS server
- Feature planning document for future development
- Added docs link to landing page nav
This commit is contained in:
Aiden Smith
2026-02-24 18:23:09 -05:00
parent f49bdb7099
commit 301402e2b1
14 changed files with 2577 additions and 1 deletions

View File

@@ -1,3 +1,4 @@
import Link from "next/link";
import { Globe, Search, Shield, Activity } from "lucide-react";
import {
Card,
@@ -42,7 +43,15 @@ export default function Home() {
VectorDNS
</span>
</div>
<ThemeToggle />
<div className="flex items-center gap-4">
<Link
href="/docs"
className="text-sm text-muted-foreground transition-colors hover:text-foreground"
>
Docs
</Link>
<ThemeToggle />
</div>
</div>
</header>