tasko/app/(marketing)/_components/navbar.tsx
2024-02-15 20:49:19 -05:00

21 lines
750 B
TypeScript

import { Logo } from '@/components/logo';
import { Button } from '@/components/ui/button';
import Link from 'next/link';
export const Navbar = () => {
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'>
<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>
</div>
);
};