mirror of
https://github.com/ahmadk953/tasko.git
synced 2025-05-02 11:49:34 +00:00
Added Basic Darkmode and Fixed Small Bugs
This commit is contained in:
parent
aacca3d141
commit
94fb5c7eb1
42 changed files with 593 additions and 72 deletions
|
@ -6,10 +6,11 @@ import { Button } from '@/components/ui/button';
|
|||
import { FormPopover } from '@/components/form/form-popover';
|
||||
|
||||
import { MobileSidebar } from './mobile-sidebar';
|
||||
import { ModeToggle } from '@/components/ui/mode-toggle';
|
||||
|
||||
export const Navbar = () => {
|
||||
return (
|
||||
<nav className='fixed top-0 z-50 flex h-14 w-full items-center border-b bg-white px-4 shadow-sm'>
|
||||
<nav className='fixed top-0 z-50 flex h-14 w-full items-center border-b bg-white px-4 shadow-sm dark:bg-black'>
|
||||
<MobileSidebar />
|
||||
<div className='flex items-center gap-x-4'>
|
||||
<div className='hidden md:flex'>
|
||||
|
@ -60,6 +61,7 @@ export const Navbar = () => {
|
|||
},
|
||||
}}
|
||||
/>
|
||||
<ModeToggle />
|
||||
</div>
|
||||
</nav>
|
||||
);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue