This repository has no description
614 B
18 lines
1import { AppShellFooter, Avatar, Group } from '@mantine/core';
2import { MdOutlineEmojiNature } from 'react-icons/md';
3import BottomBarItem from '../bottomBarItem/BottomBarItem';
4
5export default function GuestBottomBar() {
6 return (
7 <AppShellFooter px={'sm'} pb={'lg'} py={'xs'} hiddenFrom="sm">
8 <Group align="start" justify="space-around" gap={'lg'} h={'100%'}>
9 <BottomBarItem
10 href="/explore"
11 title="Explore"
12 icon={MdOutlineEmojiNature}
13 />
14 <BottomBarItem href="/login" title="Log in" icon={<Avatar />} />
15 </Group>
16 </AppShellFooter>
17 );
18}