import { useState } from 'react' import { FileText, Folder, Search, ExternalLink } from 'lucide-react' const WIKI_PAGES = [ { id: 'overview', title: 'System Overview', content: `Aether System Overview Identity Name: Aether Role: Autonomous Orchestrator Initialized: 2026-02-23 Core Directive Transform high-level visions into production-ready software. Infrastructure - Gitea: http://192.168.5.35:3000 - Vaultwarden: http://localhost:8080 - AetherOS: http://localhost:3001 The Collective - Architect: Project scoping - Researcher: Documentation - Engineer: Implementation - QA Auditor: Testing - Publisher: GitHub releases` }, { id: 'architecture', title: 'Architecture', content: `Aether Architecture Component Flow User Input -> Aether Orchestrator -> Sub-agents -> Output Data Flow 1. Planning: Architect scopes project 2. Implementation: Engineer writes code 3. Release: Publisher promotes to GitHub Memory Architecture - Short-term: Session context - Long-term: /aether_core/memory/` }, { id: 'security', title: 'Security Policy', content: `Security Policy Credential Management All credentials stored in Vaultwarden: - SSH private keys - API tokens - Service passwords Access Control - SSH key authentication only - No password authentication Key Rotation - SSH Keys: 90 days - API Tokens: 60 days` } ] function Wiki() { const [activePage, setActivePage] = useState('overview') const activeContent = WIKI_PAGES.find(p => p.id === activePage)?.content || '' return (