'use client' import { Link } from '../common/Link' import { usePathname } from 'next/navigation' import { HomeIcon, MicrophoneIcon, BookOpenIcon, UserGroupIcon, UserIcon, ArrowRightOnRectangleIcon } from '@heroicons/react/24/outline' import { useAuth } from '@/lib/hooks/useAuth' const navigation = [ { name: 'Home', href: '/dashboard', icon: HomeIcon }, { name: 'Podcasts', href: '/podcast', icon: MicrophoneIcon }, { name: 'The Journal', href: '/thejournal', icon: BookOpenIcon }, { name: 'Forum', href: 'https://forum.morethanadiagnosis.org', icon: UserGroupIcon }, { name: 'Resources', href: '/resources', icon: BookOpenIcon }, { name: 'Profile', href: '/profile', icon: UserIcon }, ] export function Sidebar() { const pathname = usePathname() const { logout } = useAuth() return (
MoreThanADiagnosis
) }