From eb7da996a7c2d617d276f296cac07a6fd5648664 Mon Sep 17 00:00:00 2001 From: Mohamed Bassem Date: Sun, 27 Oct 2024 12:03:14 +0000 Subject: ui: Redesign the settings page and move it to its own layout --- .../shared/sidebar/ModileSidebarItem.tsx | 27 ++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 apps/web/components/shared/sidebar/ModileSidebarItem.tsx (limited to 'apps/web/components/shared/sidebar/ModileSidebarItem.tsx') diff --git a/apps/web/components/shared/sidebar/ModileSidebarItem.tsx b/apps/web/components/shared/sidebar/ModileSidebarItem.tsx new file mode 100644 index 00000000..4d3436ea --- /dev/null +++ b/apps/web/components/shared/sidebar/ModileSidebarItem.tsx @@ -0,0 +1,27 @@ +"use client"; + +import Link from "next/link"; +import { usePathname } from "next/navigation"; +import { cn } from "@/lib/utils"; + +export default function MobileSidebarItem({ + logo, + path, +}: { + logo: React.ReactNode; + path: string; +}) { + const currentPath = usePathname(); + return ( +
  • + + {logo} + +
  • + ); +} -- cgit v1.2.3-70-g09d2