Implement global search feature with context, UI components, and routing updates

This commit is contained in:
Mo Tarbin
2026-08-10 00:16:38 -04:00
parent 0215a78404
commit b7bdfa7885
11 changed files with 959 additions and 19 deletions

View File

@@ -7,13 +7,12 @@ import {
import { Link } from 'react-router-dom'
const NavBarLink = ({ link }) => {
const { to, icon, label } = link
const { to, icon, label, onClick } = link
return (
<ListItem>
<ListItemButton
key={to}
component={Link}
to={to}
{...(onClick ? { onClick } : { component: Link, to })}
variant='plain'
color='neutral'
sx={{