import { SnackLogo } from '@expo/styleguide'; import { ChangelogIcon, DiscordIcon, Mail01Icon, MessageDotsSquareIcon, } from '@expo/styleguide-icons'; import { useRouter } from 'next/compat/router'; import { SidebarSingleEntry } from './SidebarSingleEntry'; import { ArchiveIcon } from './icons/Archive'; import { getPageSection } from '~/common/routes'; export const SidebarFooter = () => { const router = useRouter(); const isArchive = router?.pathname ? getPageSection(router.pathname) === 'archive' : false; return (
); };