import Link from 'next/link'; import { auth } from '@clerk/nextjs'; import { Logo } from '@/components/logo'; import { Button } from '@/components/ui/button'; export const Navbar = () => { const { userId } = auth(); let isSignedIn = !!userId; return ( <div className='fixed top-0 flex h-14 w-full items-center border-b bg-white px-4 shadow-sm'> <div className='mx-auto flex w-full items-center justify-between md:max-w-screen-2xl'> <Logo /> <div className='flex w-full items-center justify-between space-x-4 md:block md:w-auto'> {!isSignedIn ? ( <div className='flex w-full justify-between space-x-4 md:block md:w-auto'> <Button size='sm' variant='outline' asChild> <Link href='sign-in'>Login</Link> </Button> <Button size='sm' asChild> <Link href='sign-up'>Get Tasko for Free</Link> </Button> </div> ) : ( <div> <Button size='sm' variant='outline' asChild> <Link href='/select-org'>Dashboard</Link> </Button> </div> )} </div> </div> </div> ); };