first commit

This commit is contained in:
2023-01-23 20:44:12 -05:00
commit 61da605aa9
179 changed files with 30272 additions and 0 deletions
Executable
+28
View File
@@ -0,0 +1,28 @@
import React from 'react';
import Link from 'next/link';
const Custom404 = () => {
return (
<>
<div className="error-area">
<div className="error-item">
<div className="d-table">
<div className="d-table-cell">
<div className="error-text">
<h1>404!</h1>
<p>Sorry! The Page Not Found</p>
<span>Oops! The page you are looking for does not exit. it might been moved or deleted.</span>
<Link href="/">
<a>Return to Home</a>
</Link>
</div>
</div>
</div>
</div>
</div>
</>
)
}
export default Custom404;