mirror of
https://github.com/ahmadk953/tasko.git
synced 2025-05-01 03:09:34 +00:00
Initial Commit
This commit is contained in:
commit
f3e2f01bd7
150 changed files with 13612 additions and 0 deletions
20
app/(marketing)/_components/footer.tsx
Normal file
20
app/(marketing)/_components/footer.tsx
Normal file
|
@ -0,0 +1,20 @@
|
|||
import { Logo } from "@/components/logo";
|
||||
import { Button } from "@/components/ui/button";
|
||||
|
||||
export const Footer = () => {
|
||||
return (
|
||||
<div className="fixed bottom-0 w-full p-4 border-t bg-slate-100">
|
||||
<div className="md:max-w-screen-2xl mx-auto flex items-center w-full justify-between">
|
||||
<Logo />
|
||||
<div className="space-x-4 md:block md:w-auto flex items-center justify-between w-full">
|
||||
<Button size="sm" variant="ghost">
|
||||
Privacy Policy
|
||||
</Button>
|
||||
<Button size="sm" variant="ghost">
|
||||
Terms of Service
|
||||
</Button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue