Update | Project Ready

This commit is contained in:
Possible
2025-04-03 17:05:59 +01:00
commit c5aee9e2ec
176 changed files with 34486 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
import Loader from "Components/Loader";
import React from "react";
const NotFoundPage = () => {
const [loading, setLoading] = React.useState(true);
React.useEffect(() => {
const interval = setTimeout(() => {
setLoading(false);
}, 5000);
// return () => clearInterval(interval);
}, []);
return (
<>
{loading ? (
<Loader />
) : (
<div className="w-full flex justify-center items-center text-7xl h-screen text-gray-700 ">
Not Found
</div>
)}
</>
);
};
export default NotFoundPage;
+1
View File
@@ -0,0 +1 @@
export { default as NotFoundPage } from './NotFoundPage'