You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

13 lines
291 B

import React from "react";
import Layout from "./layouts/Main";
export default function Index() {
return (
<Layout>
<div className="jumbotron">
<h1 className="display-4">404</h1>
<p className="lead">This page was not found.</p>
</div>
</Layout>
);
}