"use client" import { Avatar, AvatarFallback, AvatarImage } from "@/components/ui/avatar" import { useSidebar } from "@/components/ui/sidebar" import { APP_TITLE } from "@/lib/constants" import Link from "next/link" export default function MobileMenu({ unsortedFilesCount }: { unsortedFilesCount: number }) { const { toggleSidebar } = useSidebar() return (
) }