From e58784a4f1dba8e6ba742f38af87ffc1d3ca49e7 Mon Sep 17 00:00:00 2001 From: GamerBoss101 Date: Sat, 12 Apr 2025 20:15:15 -0400 Subject: [PATCH] Points Guide NavItem Update --- src/lib/components/MobileNav.jsx | 7 +++--- src/lib/components/NavBar.tsx | 42 +++++++++++++++----------------- 2 files changed, 23 insertions(+), 26 deletions(-) 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;