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

28 lines
739 B
TypeScript

import Image from "next/image";
import Link from "next/link";
import React from "react";
const HistoryEmpty: React.FC = () => {
return (
<div className="flex flex-col w-full h-full items-center justify-center gap-4">
<Image
src={"/icons/chats-circle-light.svg"}
width={50}
height={50}
alt=""
/>
<p className="text-sm leading-5 text-center text-[#9CA3AF]">
Jan allows you to use 100s of AIs on your mobile phone
</p>
<Link
href="/ai"
className="bg-[#1F2A37] py-[10px] px-5 gap-2 rounded-[8px] text-[14px] font-medium leading-[21px] text-white"
>
Explore AIs
</Link>
</div>
);
};
export default React.memo(HistoryEmpty);