work on team enrollment

This commit is contained in:
yohlo
2025-09-16 09:24:21 -05:00
parent 9a105b30c6
commit cde74a04d5
45 changed files with 1244 additions and 457 deletions

View File

@@ -4,6 +4,7 @@ import { NavLink } from "./nav-link";
import { useIsMobile } from "@/hooks/use-is-mobile";
import { useAuth } from "@/contexts/auth-context";
import { useLinks } from "../hooks/use-links";
import { memo } from "react";
const Navbar = () => {
const { user, roles } = useAuth()
@@ -35,4 +36,4 @@ const Navbar = () => {
</AppShell.Navbar>
}
export default Navbar;
export default memo(Navbar);