2023-02-08 18:32:20 -06:00
|
|
|
import { signOut } from "next-auth/react";
|
|
|
|
|
2023-02-08 17:58:55 -06:00
|
|
|
export default function Navbar() {
|
2023-02-08 18:32:20 -06:00
|
|
|
return (
|
2023-02-18 21:32:02 -06:00
|
|
|
<div className="flex justify-between p-5 border-solid border-b-sky-100 border border-l-white">
|
2023-02-08 18:32:20 -06:00
|
|
|
<p>Navbar</p>
|
|
|
|
<div onClick={() => signOut()} className="cursor-pointer w-max">
|
|
|
|
Sign Out
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
2023-02-08 17:58:55 -06:00
|
|
|
}
|