import { Link, useLocation } from 'react-router-dom' import { Button } from '@/components/ui/button' import { ArrowLeft, FolderOpen, Users } from 'lucide-react' export function Navbar() { const location = useLocation() const isHome = location.pathname === '/' return (