tasko/app/(marketing)/_components/footer.tsx

22 lines
708 B
TypeScript
Raw Normal View History

2024-02-15 20:49:19 -05:00
import { Logo } from '@/components/logo';
import { Button } from '@/components/ui/button';
2024-02-20 20:31:00 -05:00
import Link from 'next/link';
2024-02-14 21:30:10 -05:00
export const Footer = () => {
return (
2024-02-15 20:49:19 -05:00
<div className='fixed bottom-0 w-full border-t bg-slate-100 p-4'>
<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-02-15 20:49:19 -05:00
<div className='flex w-full items-center justify-between space-x-4 md:block md:w-auto'>
<Button size='sm' variant='ghost'>
<Link href='/privacy-policy'>Privacy Policy</Link>
2024-02-14 21:30:10 -05:00
</Button>
2024-02-15 20:49:19 -05:00
<Button size='sm' variant='ghost'>
2024-02-14 21:30:10 -05:00
Terms of Service
</Button>
</div>
</div>
</div>
);
};