import { css } from '@emotion/react'; import { theme, SnackLogo } from '@expo/styleguide'; import { spacing } from '@expo/styleguide-base'; import { ChangelogIcon, DiscordIcon, MessageDotsSquareIcon } from '@expo/styleguide-icons'; import { useRouter } from 'next/router'; import { SidebarSingleEntry } from './SidebarSingleEntry'; import { ArchiveIcon } from './icons/Archive'; import { getPageSection } from '~/common/routes'; export const SidebarFooter = () => { const { pathname } = useRouter(); const isArchive = getPageSection(pathname) === 'archive'; return (
); }; const sidebarFooterContainer = css({ display: 'flex', flexDirection: 'column', padding: spacing[4], borderTop: `1px solid ${theme.border.default}`, background: theme.background.default, });