A social knowledge tool for researchers built on ATProto

feat: add explore tab to navigation with global feed route

Co-authored-by: aider (anthropic/claude-sonnet-4-20250514) <aider@aider.chat>

+7
+7
src/webapp/app/(authenticated)/layout.tsx
··· 17 17 import { BsFolder2 } from 'react-icons/bs'; 18 18 import { BiUser } from 'react-icons/bi'; 19 19 import { FiPlus } from 'react-icons/fi'; 20 + import { HiOutlineGlobeAlt } from 'react-icons/hi'; 20 21 21 22 export default function AuthenticatedLayout({ 22 23 children, ··· 68 69 </AppShell.Header> 69 70 70 71 <AppShell.Navbar p="md"> 72 + <NavLink 73 + href="/explore" 74 + label="Explore" 75 + active={pathname === '/explore'} 76 + leftSection={<HiOutlineGlobeAlt />} 77 + /> 71 78 <NavLink 72 79 href="/library" 73 80 label="My cards"