2024-02-21 18:14:33 -05:00
|
|
|
import Link from 'next/link';
|
2024-03-21 17:15:27 -04:00
|
|
|
import { auth } from '@clerk/nextjs/server';
|
2024-02-21 18:14:33 -05:00
|
|
|
|
2024-02-15 20:49:19 -05:00
|
|
|
import { Logo } from '@/components/logo';
|
|
|
|
import { Button } from '@/components/ui/button';
|
2024-02-14 21:30:10 -05:00
|
|
|
|
2024-10-23 19:17:45 -04:00
|
|
|
export const Navbar = async () => {
|
|
|
|
const { userId } = await auth();
|
2024-02-21 18:14:33 -05:00
|
|
|
|
|
|
|
let isSignedIn = !!userId;
|
|
|
|
|
2024-02-14 21:30:10 -05:00
|
|
|
return (
|
2024-02-15 20:49:19 -05:00
|
|
|
<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'>
|
2024-02-14 21:30:10 -05:00
|
|
|
<Logo />
|
2024-11-17 16:28:51 -05:00
|
|
|
<div className='ml-0 flex w-full flex-auto items-center space-x-1 md:ml-6 md:block md:w-auto md:space-x-4'>
|
|
|
|
<Button size='sm' variant='ghost' asChild>
|
|
|
|
<Link href='/blog'>Blog</Link>
|
|
|
|
</Button>
|
|
|
|
<Button size='sm' variant='ghost' asChild>
|
2024-12-08 14:21:54 -05:00
|
|
|
<Link href='https://docs.tasko.ahmadk953.org/'>Docs</Link>
|
2024-11-17 16:28:51 -05:00
|
|
|
</Button>
|
|
|
|
</div>
|
2024-02-15 20:49:19 -05:00
|
|
|
<div className='flex w-full items-center justify-between space-x-4 md:block md:w-auto'>
|
2024-02-21 18:14:33 -05:00
|
|
|
{!isSignedIn ? (
|
2024-02-24 20:16:11 -05:00
|
|
|
<div className='flex w-full justify-between space-x-4 md:block md:w-auto'>
|
2024-02-21 18:14:33 -05:00
|
|
|
<Button size='sm' variant='outline' asChild>
|
2024-11-17 16:28:51 -05:00
|
|
|
<Link href='/sign-in'>Login</Link>
|
2024-02-21 18:14:33 -05:00
|
|
|
</Button>
|
|
|
|
<Button size='sm' asChild>
|
2024-11-17 16:28:51 -05:00
|
|
|
<Link href='/sign-up'>Get Tasko for Free</Link>
|
2024-02-21 18:14:33 -05:00
|
|
|
</Button>
|
|
|
|
</div>
|
|
|
|
) : (
|
|
|
|
<div>
|
|
|
|
<Button size='sm' variant='outline' asChild>
|
|
|
|
<Link href='/select-org'>Dashboard</Link>
|
|
|
|
</Button>
|
|
|
|
</div>
|
|
|
|
)}
|
2024-02-14 21:30:10 -05:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
};
|