import React from 'react' import Link from 'next/link' import erimg from '/public/images/error-404.png' import Image from 'next/image' const Error = (props) => { const ClickHandler = () =>{ window.scrollTo(10, 0); } return(

Oops! Page Not Found!

We’re sorry but we can’t seem to find the page you requested. This might be because you have typed the web address incorrectly.

Back to home
) } export default Error;