diff --git a/AceJobAgency.client/public/aja.svg b/AceJobAgency.client/public/aja.svg
new file mode 100644
index 0000000..cdb22b6
--- /dev/null
+++ b/AceJobAgency.client/public/aja.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/AceJobAgency.client/src/components/NavigationBar.tsx b/AceJobAgency.client/src/components/NavigationBar.tsx
new file mode 100644
index 0000000..8ba3089
--- /dev/null
+++ b/AceJobAgency.client/src/components/NavigationBar.tsx
@@ -0,0 +1,55 @@
+import {
+ Button,
+ Link,
+ Navbar,
+ NavbarBrand,
+ NavbarContent,
+ NavbarItem,
+} from "@heroui/react";
+import { useNavigate } from "react-router-dom";
+
+export default function NavigationBar() {
+ const navigate = useNavigate();
+
+ return (
+
+
+ {
+ navigate("/");
+ }}
+ >
+
+
+
+
+
+
+
+
+
+
+
+
+ );
+}
diff --git a/AceJobAgency.client/src/layouts/DefaultLayout.tsx b/AceJobAgency.client/src/layouts/DefaultLayout.tsx
index 2f4e5f2..0eff6ca 100644
--- a/AceJobAgency.client/src/layouts/DefaultLayout.tsx
+++ b/AceJobAgency.client/src/layouts/DefaultLayout.tsx
@@ -1,18 +1,20 @@
import { Outlet } from "react-router-dom";
+import NavigationBar from "../components/NavigationBar";
export default function DefaultLayout() {
return (
+
{/*
- A div that becomes black in dark mode to cover white color parts
- of the website when scrolling past the window's original view.
- */}
+ A div that becomes black in dark mode to cover white color parts
+ of the website when scrolling past the window's original view.
+ */}