import { Link, useLocation } from 'react-router-dom' import { cn } from '@/lib/utils' import { BookOpen, MessageSquare, Settings, Brain, ArrowLeft } from 'lucide-react' const navigation = [ { name: 'Templates', href: '/templates', icon: Brain, description: 'Browse assistant templates and examples' }, { name: 'Assistant Studio', href: '/playground', icon: MessageSquare, description: 'Build, test and refine your AI assistants' }, { name: 'Model Catalog', href: '/models', icon: BookOpen, description: 'Browse and manage AI models' }, { name: 'Settings', href: '/settings', icon: Settings, description: 'Application settings' } ] export function Sidebar() { const location = useLocation() return (
{/* Header */}

Edge LLM

Local AI Platform

{/* Navigation */}
{/* Back to Home */}
Back to Home

Get started

) }