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

21 lines
294 B
JavaScript

import Banner from '../components/Banner';
export default function NotFound(){
const data = {
title: "404 - Not found",
content: "Sorry, the page you are looking for does not exist.",
destination: "/",
label: "Back home"
}
return(
<Banner data={data} />
)
}