mirror of
https://github.com/ahmadk953/tasko.git
synced 2025-06-23 12:54:21 +00:00
Added Blog Page and Housekeeping
This commit is contained in:
parent
db4bf103c3
commit
d32415232e
18 changed files with 6860 additions and 769 deletions
21
app/(main)/_components/footer.tsx
Normal file
21
app/(main)/_components/footer.tsx
Normal file
|
@ -0,0 +1,21 @@
|
|||
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 className='italic' size='sm' variant='ghost'>
|
||||
Privacy Policy - Temporarily Removed
|
||||
</Button>
|
||||
<Button className='italic' size='sm' variant='ghost'>
|
||||
Terms of Service - Coming Soon
|
||||
</Button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue