import { usePrimaryPage } from '@/contexts/primary-page-context' import { MessageCircle } from 'lucide-react' import BottomNavigationBarItem from './BottomNavigationBarItem' export default function DiscussionsButton() { const { navigate, current, currentPageProps, display } = usePrimaryPage() const spell = (currentPageProps as { spell?: string } | undefined)?.spell return ( navigate('spells', { spell: 'discussions' })} > ) }