diff --git a/src/lib/components/MobileNav.jsx b/src/lib/components/MobileNav.jsx
index c078e18..b4dc6c8 100644
--- a/src/lib/components/MobileNav.jsx
+++ b/src/lib/components/MobileNav.jsx
@@ -4,10 +4,8 @@ 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,
+ Coins as CoinsImage,
} from "lucide-react";
import { useRouter } from "next/navigation";
@@ -22,6 +20,9 @@ const Footer = () => {
+
+
+
);
diff --git a/src/lib/components/NavBar.tsx b/src/lib/components/NavBar.tsx
index e26ef6e..4ab4278 100644
--- a/src/lib/components/NavBar.tsx
+++ b/src/lib/components/NavBar.tsx
@@ -1,31 +1,27 @@
"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 (
-
- );
+ return (
+
+ );
};
export default NavBar;