This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

semble / src / webapp / components / navigation / guestBottomBar / GuestBottomBar.tsx
669 B 17 lines
1import { AppShellFooter, Avatar, Group } from '@mantine/core'; 2import { LuLibrary } from 'react-icons/lu'; 3import { MdOutlineEmojiNature } from 'react-icons/md'; 4import BottomBarItem from '../bottomBarItem/BottomBarItem'; 5import Link from 'next/link'; 6 7export default function GuestBottomBar() { 8 return ( 9 <AppShellFooter px={'sm'} pb={'lg'} py={'xs'} hiddenFrom="sm"> 10 <Group align="start" justify="space-around" gap={'lg'} h={'100%'}> 11 <BottomBarItem href="/home" icon={LuLibrary} /> 12 <BottomBarItem href="/explore" icon={MdOutlineEmojiNature} /> 13 <Avatar component={Link} href={'/login'} /> 14 </Group> 15 </AppShellFooter> 16 ); 17}