summaryrefslogtreecommitdiff
path: root/src/components/navbar.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/navbar.tsx')
-rw-r--r--src/components/navbar.tsx12
1 files changed, 5 insertions, 7 deletions
diff --git a/src/components/navbar.tsx b/src/components/navbar.tsx
index dd8ca25..b5599b9 100644
--- a/src/components/navbar.tsx
+++ b/src/components/navbar.tsx
@@ -1,6 +1,8 @@
-import { CartFill, PersonCircle } from "react-bootstrap-icons";
+import { CartFill } from "react-bootstrap-icons";
import "./stylesheets/navbar.css";
import "./stylesheets/shared.css";
+import React from "react";
+import { LoginForm } from "./forms/login_form";
export default function Navbar() {
return(
@@ -39,12 +41,8 @@ export default function Navbar() {
</span>
</a>
- <a className="mr-4 text-neutral-500 hover:text-neutral-700 focus:text-neutral-700 disabled:text-black/30 dark:text-neutral-200 dark:hover:text-neutral-300 dark:focus:text-neutral-300 [&.active]:text-black/90 dark:[&.active]:text-neutral-400"
- href="#">
- <span className="[&>svg]:w-5">
- <PersonCircle color="#394490" size={32}/>
- </span>
- </a>
+ { /* Modal */ }
+ <LoginForm/>
</div>
</div>
</nav>