diff --git a/app/(auth)/_components/Mobilenav.tsx b/app/(auth)/_components/Mobilenav.tsx index 7c901c3..6058202 100644 --- a/app/(auth)/_components/Mobilenav.tsx +++ b/app/(auth)/_components/Mobilenav.tsx @@ -6,51 +6,52 @@ import Image from "next/image"; import { AdminLinks } from "@/constants"; import { usePathname } from "next/navigation"; import { Menu } from "lucide-react"; +import Logo from "@/components/shared/Logo"; const MobileNav = () => { - const pathname = usePathname(); - return ( -
- - - + const pathname = usePathname(); + return ( +
+ + + -
- ); + return ( +
  • + + + {link.name} + +
  • + ); + })} + + + + + +
    + ); }; export default MobileNav; diff --git a/app/(auth)/_components/Sidebar.tsx b/app/(auth)/_components/Sidebar.tsx index 39266f6..a064df8 100644 --- a/app/(auth)/_components/Sidebar.tsx +++ b/app/(auth)/_components/Sidebar.tsx @@ -1,9 +1,9 @@ "use client"; import Link from "next/link"; -import Image from "next/image"; import { usePathname } from "next/navigation"; import { AdminLinks } from "@/constants"; +import Logo from "@/components/shared/Logo"; const Sidebar = () => { const pathname = usePathname(); @@ -12,7 +12,7 @@ const Sidebar = () => {