11"use client" ;
22
3- import { BrutalistButton } from "@packages/ui/components/brutalist- button" ;
3+ import { Button } from "@packages/ui/components/ui/ button" ;
44import {
55 Sheet ,
66 SheetContent ,
@@ -32,19 +32,16 @@ export function MobileNav() {
3232 return (
3333 < Sheet open = { open } onOpenChange = { setOpen } >
3434 < SheetTrigger asChild className = "lg:hidden" >
35- < BrutalistButton variant = "outline" size = "sm " className = "h-10 w-10 p-0 " >
36- < Menu className = "h-5 w-5" strokeWidth = { 2.5 } />
35+ < Button variant = "outline" size = "icon " className = "h-10 w-10" >
36+ < Menu className = "h-5 w-5" />
3737 < span className = "sr-only" > Toggle menu</ span >
38- </ BrutalistButton >
38+ </ Button >
3939 </ SheetTrigger >
40- < SheetContent
41- side = "left"
42- className = "w-64 p-0 border-r-3 border-black dark:border-white rounded-none"
43- >
44- < div className = "flex h-16 items-center border-b-3 border-black dark:border-white px-6" >
40+ < SheetContent side = "left" className = "w-64 p-0" >
41+ < div className = "flex h-16 items-center border-b px-6" >
4542 < Link
4643 href = "/dashboard"
47- className = "font-black text-xl uppercase tracking-tight "
44+ className = "font-bold text-xl"
4845 onClick = { ( ) => setOpen ( false ) }
4946 >
5047 AppName
@@ -60,13 +57,13 @@ export function MobileNav() {
6057 href = { item . href }
6158 onClick = { ( ) => setOpen ( false ) }
6259 className = { cn (
63- "flex items-center gap-3 px-3 py-2.5 font-bold uppercase text-sm tracking-wide transition-all border-3 " ,
60+ "flex items-center gap-3 px-3 py-2.5 rounded-lg text-sm font-medium transition-colors " ,
6461 isActive
65- ? "bg-black text-white dark:bg-white dark:text-black border-black dark:border-white shadow-[3px_3px_0px_0px_rgba(0,0,0,1)] dark:shadow-[3px_3px_0px_0px_rgba(255,255,255,1)] "
66- : "bg-white text-black dark:bg-black dark :text-white border-transparent hover:border-black dark:hover:border-white " ,
62+ ? "bg-primary text-primary-foreground "
63+ : "text-muted-foreground hover :text-foreground hover:bg-secondary/50 " ,
6764 ) }
6865 >
69- < item . icon className = "h-5 w-5" strokeWidth = { 2.5 } />
66+ < item . icon className = "h-5 w-5" />
7067 { item . name }
7168 </ Link >
7269 ) ;
0 commit comments