import React from 'react'; import { Link, Outlet, useLocation } from 'react-router-dom'; import { cn } from '@/lib/utils'; import { Globe, BookOpen, Rocket, Container, Code2, Key, Building2, Terminal, Users, ExternalLink } from 'lucide-react'; import { ThemeToggle } from '@/components/ThemeToggle'; import { Button } from '@/components/ui/button'; const navigation = [ { title: 'Getting Started', items: [ { title: 'Introduction', href: '/docs', icon: BookOpen }, { title: 'Quick Start', href: '/docs/quick-start', icon: Rocket }, ] }, { title: 'Deployment', items: [ { title: 'Docker', href: '/docs/docker', icon: Container }, { title: 'Configuration', href: '/docs/configuration', icon: Terminal }, ] }, { title: 'Integration', items: [ { title: 'TypeScript SDK', href: '/docs/sdk', icon: Code2 }, { title: 'OIDC / OAuth 2.0', href: '/docs/oidc', icon: Key }, ] }, { title: 'Features', items: [ { title: 'Organizations', href: '/docs/organizations', icon: Building2 }, { title: 'User Management', href: '/docs/users', icon: Users }, ] }, ]; const DocsLayout = () => { const location = useLocation(); return (
); }; export default DocsLayout;