# Future Work ## Navigation Header Enhancement ### Current Behavior - Admin users see an "Admin" link in the navigation header - Clicking "EuchreCamp" brand link goes to the home page ### Proposed Change - Remove the "Admin" link from the navigation header - For **admin users**: clicking "EuchreCamp" brand link should take them to `/admin` - For **non-admin authenticated users**: clicking "EuchreCamp" brand link should take them to their player homepage (`/players/[id]/profile`) ### Implementation Notes - This requires updating the Navigation component - Need to check user role/permissions in the Navigation component - May need to pass user info from server components to client Navigation ### Related Files - `src/components/Navigation.tsx` - Main navigation component - `src/lib/auth-simple.ts` - Authentication utilities - `src/lib/permissions.ts` - Role checking utilities