import { usePrimaryPage } from '@/contexts/primary-page-context'
import { useNostr } from '@/providers/NostrProvider'
import { Bell, Settings } from 'lucide-react'
import BottomNavigationBarItem from './BottomNavigationBarItem'
export default function NotificationsButton() {
const { navigate, current, currentPageProps, display } = usePrimaryPage()
const { pubkey } = useNostr()
const spell = (currentPageProps as { spell?: string } | undefined)?.spell
if (!pubkey) {
return (
navigate('settings')}
>
)
}
return (
navigate('spells', { spell: 'notifications' })}
>
)
}