diff --git a/src/components/Navbar/Navbar.tsx b/src/components/Navbar/Navbar.tsx
index d9bb43d..14de319 100644
--- a/src/components/Navbar/Navbar.tsx
+++ b/src/components/Navbar/Navbar.tsx
@@ -1,12 +1,12 @@
import Link from "next/link"
-import { usePathname, useRouter } from "next/navigation"
+import { usePathname } from "next/navigation"
import { usePopupWidget } from "../../providers/PopupWidgetProvider"
import PopUpWindows from "../PopUpWindows/PopUpWindows"
import { SCREENS } from "../../lib/screens"
const Navbar = () => {
const pathname = usePathname()
- const { push } = useRouter()
+ // const { push } = useRouter()
const { openPopUp } = usePopupWidget() as any
@@ -20,7 +20,7 @@ const Navbar = () => {
const isWeb3Page = pathname.includes("/web3")
const isPressPage = pathname.includes("/press")
const isContactPage = pathname.includes("/contact")
- const isEmployeePage = pathname.includes("/employee")
+ // const isEmployeePage = pathname.includes("/employee")
return (
<>
@@ -73,14 +73,14 @@ const Navbar = () => {
>
Contact
-
+ */}
>