hiento09 86f0ffc7d1
Chore/disable submodule (#56)
* Chore disable git submodule for web-client and app-backend

* Chore add newest source code of app-backend and web-client

---------

Co-authored-by: Hien To <tominhhien97@gmail.com>
2023-09-05 16:29:07 +07:00

30 lines
700 B
TypeScript

import Image from "next/image";
import Link from "next/link";
// DEPRECATED
export default function Footer() {
return (
<div className="flex items-center justify-between container m-auto">
<div className="flex items-center gap-3">
<Image src={"/icons/app_icon.svg"} width={32} height={32} alt="" />
<span>Jan</span>
</div>
<div className="flex gap-4 my-6">
<Link
href="/privacy"
className="cursor-pointer"
>
Privacy
</Link>
<span>&#8226;</span>
<Link
href="/support"
className="cursor-pointer"
>
Support
</Link>
</div>
</div>
);
}