This repository has no description
0

Configure Feed

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

feat: more accessible navbar items + new home icon

+9 -5
+2 -2
src/webapp/components/navigation/bottomBar/BottomBar.tsx
··· 1 1 'use client'; 2 2 3 3 import { AppShellFooter, Avatar, Group, Indicator } from '@mantine/core'; 4 - import { LuLibrary } from 'react-icons/lu'; 4 + import { HiOutlineHome } from 'react-icons/hi'; 5 5 import { MdOutlineEmojiNature } from 'react-icons/md'; 6 6 import { BiSearch } from 'react-icons/bi'; 7 7 import BottomBarItem from '../bottomBarItem/BottomBarItem'; ··· 16 16 return ( 17 17 <AppShellFooter px={'sm'} pb={'lg'} py={'xs'} hiddenFrom="sm"> 18 18 <Group align="center" justify="space-around" gap={0} h={'100%'}> 19 - <BottomBarItem href="/home" title="Home" icon={LuLibrary} /> 19 + <BottomBarItem href="/home" title="Home" icon={HiOutlineHome} /> 20 20 <BottomBarItem 21 21 href="/explore" 22 22 title="Explore"
+6 -2
src/webapp/components/navigation/navbar/Navbar.tsx
··· 15 15 Button, 16 16 Badge, 17 17 } from '@mantine/core'; 18 - import { LuLibrary } from 'react-icons/lu'; 19 18 import { MdOutlineEmojiNature } from 'react-icons/md'; 20 19 import { FaRegNoteSticky } from 'react-icons/fa6'; 21 20 import { TbSettings } from 'react-icons/tb'; ··· 31 30 import { track } from '@vercel/analytics'; 32 31 import NotificationNavItem from '@/features/notifications/components/notificationNavItem/NotificationNavItem'; 33 32 import Composer from '@/features/composer/components/Composer'; 33 + import { HiOutlineHome } from 'react-icons/hi'; 34 34 35 35 export default function Navbar() { 36 36 const [openAddDrawer, setOpenAddDrawer] = useState(false); ··· 57 57 <ProfileMenu /> 58 58 59 59 <Stack gap={5}> 60 - <NavItem href="/home" label="Home" icon={<LuLibrary size={25} />} /> 60 + <NavItem 61 + href="/home" 62 + label="Home" 63 + icon={<HiOutlineHome size={25} />} 64 + /> 61 65 <NavItem 62 66 href="/explore" 63 67 label="Explore"
+1 -1
src/webapp/next-env.d.ts
··· 1 1 /// <reference types="next" /> 2 2 /// <reference types="next/image-types/global" /> 3 - import "./.next/dev/types/routes.d.ts"; 3 + import "./.next/types/routes.d.ts"; 4 4 5 5 // NOTE: This file should not be edited 6 6 // see https://nextjs.org/docs/app/api-reference/config/typescript for more information.