web/plugins/NothingFound/page.jsx

18 lines
457 B
React
Raw Normal View History

2024-11-25 15:31:48 +03:30
import { useLocale, useTranslations } from "next-intl";
import React from "react";
const NothingFound = () => {
2024-11-25 15:31:48 +03:30
const t = useTranslations("extra");
const locale = useLocale();
const isRTL = locale === "fa";
return (
<div className="flex justify-center py-5">
<div className="bg-gray-100 mt-5 w-fit rounded-full p-2">
2024-11-25 15:31:48 +03:30
<p className="mb-0 text-sm ">{t("noting")}</p>
</div>
</div>
);
};
export default NothingFound;