Overview
\nWelcome back, Ada.
\n{ "$schema": "https://ui.shadcn.com/schema/registry-item.json", "name": "dashboard", "title": "Dashboard shell", "description": "An app shell with sidebar navigation, a search header, and KPI stat cards.", "registryDependencies": [ "button", "input", "badge", "card", "https://www.quilldesignsystem.com/r/icon.json" ], "files": [ { "path": "registry/blocks/dashboard.tsx", "content": "import { Icon, type IconName } from '@/components/ui/icon'\nimport { Button } from '@/components/ui/button'\nimport { Input } from '@/components/ui/input'\nimport { Badge } from '@/components/ui/badge'\nimport {\n Card,\n CardHeader,\n CardTitle,\n CardDescription,\n CardContent,\n} from '@/components/ui/card'\n\nconst nav: { label: string; icon: IconName; active?: boolean }[] = [\n { label: 'Overview', icon: 'dashboard', active: true },\n { label: 'Projects', icon: 'folder_open' },\n { label: 'Team', icon: 'group' },\n { label: 'Billing', icon: 'credit_card' },\n { label: 'Settings', icon: 'settings' },\n]\n\n/** An app shell with sidebar navigation, a search header, and KPI stat cards. */\nexport function Dashboard() {\n return (\n
Welcome back, Ada.
\n