first commit
This commit is contained in:
Executable
+28
@@ -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;
|
||||
Reference in New Issue
Block a user