classify web

This commit is contained in:
Husanjonazamov
2026-02-24 12:52:49 +05:00
commit 64af77101f
310 changed files with 45449 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
import { t } from "@/utils";
import noChatListFound from "../../../public/assets/no_data_found_illustrator.svg";
import CustomImage from "@/components/Common/CustomImage";
const NoChatListFound = () => {
return (
<div className="flex flex-col items-center justify-center gap-2">
<CustomImage
src={noChatListFound}
alt="no chat list found"
width={200}
height={200}
className="w-[200px] h-auto aspect-square"
/>
<h3 className="font-medium text-2xl text-primary text-center">
{t("noConversationsFound")}
</h3>
<span className="text-sm text-center">{t("noChatsAvailable")}</span>
</div>
);
};
export default NoChatListFound;