import { Logo } from "@/components/logo"; import { Button } from "@/components/ui/button"; import { ScrollArea } from "@/components/ui/scroll-area"; import { BarChart, Database, FileKey, Filter, FormInput, Home, } from "lucide-react"; import { ChannelLink } from "./channelLink"; import { TeamSwitcher } from "./TeamSwitcher"; import Link from "next/link"; type Props = { navigation: { href: string; external?: boolean; label: string; }[]; channels: { name: string; }[]; }; export const DesktopSidebar: React.FC = ({ navigation, channels }) => { return ( ); };