mirror of
https://github.com/ahmadk953/tasko.git
synced 2025-01-31 09:03:36 +00:00
21 lines
708 B
TypeScript
21 lines
708 B
TypeScript
import { Logo } from '@/components/logo';
|
|
import { Button } from '@/components/ui/button';
|
|
import Link from 'next/link';
|
|
|
|
export const Footer = () => {
|
|
return (
|
|
<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'>
|
|
<Logo />
|
|
<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>
|
|
</Button>
|
|
<Button size='sm' variant='ghost'>
|
|
Terms of Service
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|