1 2 3 4 5 6 7 8 9 10 11 12 13
import Error from '../src/components/error/error' const HomePage = () => { return ( <Error code="404" title="Page not found." description="Sorry, we couldn't find the page you're looking for." /> ) } export default HomePage