yo-next-auth/components/auth/navbar.tsx

12 lines
286 B
TypeScript

import LocaleSwitcher from '@/components/locale-switcher'
export default function Navbar () {
//const t = useScopedI18n('navbar')
return (
<nav className="flex justify-between top-0 absolute w-full px-3.5 py-1.5">
<div>Logo</div>
<LocaleSwitcher/>
</nav>
)
}