-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNavbar.js
50 lines (47 loc) · 1.43 KB
/
Navbar.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
import React from "react";
import { useAuth } from "@/lib/auth";
import { useTheme } from "next-themes";
import Link from "next/link";
import Image from "next/image";
function Navbar() {
const { theme, setTheme } = useTheme();
const auth = useAuth();
return (
<nav className="h-20 px-8 shadow-lg border-black border-b-2 dark:border-white dark:bg-black">
<div className="max-w-full h-full flex justify-between">
<div className="flex items-center justify-center text-sm sm:text-xl">
<Link href="/dashboard">Feedback na web. </Link>
<li className=" flex items-center justify-center ">
{theme === "dark" ? (
<a onClick={() => setTheme(theme === "dark" ? "light" : "dark")}>
<Image height="24" width="24" src="/moon.svg" />
</a>
) : (
<a onClick={() => setTheme(theme === "dark" ? "light" : "dark")}>
<Image height="24" width="24" src="/sun.svg" />
</a>
)}
</li>
</div>
{auth?.user ? (
<ul className="max-w-full h-full flex items-center justify-center">
<li>
<Link className="cursor-pointer px-4 py-2 mx-4" href={"/account"}>
{auth.user ? auth.user.email : "None"}
</Link>
</li>
<li>
<img
className=" rounded-full mx-4 w-12 border-black border-2 dark:border-white"
src={auth.user.photoUrl}
></img>
</li>
</ul>
) : (
<></>
)}
</div>
</nav>
);
}
export default Navbar;