"use client"; import { Logo } from "@/components/logo"; import { Button } from "@/components/ui/button"; import { ScrollArea } from "@/components/ui/scroll-area"; import { BarChart, Database, FileKey, Filter, Home, Menu } from "lucide-react"; import { ChannelLink } from "./channelLink"; import { TeamSwitcher } from "./TeamSwitcher"; import Link from "next/link"; import { Sheet, SheetContent, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, } from "@/components/ui/sheet"; type Props = { navigation: { href: string; external?: boolean; label: string; }[]; channels: { name: string; }[]; }; export const MobileSidebar: React.FC = ({ channels }) => { return (
{" "} Omnidash {/* Make changes to your profile here. Click save when you're done. */}

{/* Events */}

Events

{channels.map((channel) => ( ))}
); };