'use client' import { Link } from '../common/Link' import { usePathname } from 'next/navigation' import { HomeIcon, BookOpenIcon, UserGroupIcon, UserIcon } from '@heroicons/react/24/outline' const navigation = [ { name: 'Home', href: '/', icon: HomeIcon }, { name: 'Journal', href: '/thejournal', icon: BookOpenIcon }, { name: 'Forum', href: 'https://forum.morethanadiagnosis.org', icon: UserGroupIcon }, { name: 'Profile', href: '/profile', icon: UserIcon }, ] export function MobileNav() { const pathname = usePathname() return (