import { Link } from "react-router"; interface NavbarProps { auth: { username: string; accessToken: string; refreshToken: string; userAccountId: string; } | null; } export default function Navbar({ auth }: NavbarProps) { return (