-
-
-
-
+ ) : (
+
+ )}
);
}
diff --git a/src/lib/components/NavBar.tsx b/src/lib/components/NavBar.tsx
new file mode 100644
index 0000000..e26ef6e
--- /dev/null
+++ b/src/lib/components/NavBar.tsx
@@ -0,0 +1,31 @@
+"use client";
+
+import React from "react";
+import { Navigation } from "@skeletonlabs/skeleton-react";
+import {
+ Home as IconHome,
+ Folder as IconFolder,
+ BookText as BookImage,
+ Music as IconMusic,
+ Video as IconVideo,
+} from "lucide-react";
+
+import { useRouter } from "next/navigation";
+
+const NavBar = () => {
+ return (
+
+ );
+};
+
+export default NavBar;