Files
KintCare-www/pages/404.js
T
2023-01-23 20:44:12 -05:00

28 lines
615 B
JavaScript
Executable File

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;