mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-15 01:35:17 +01:00
11 lines
200 B
JavaScript
11 lines
200 B
JavaScript
|
import React from 'react';
|
||
|
import Layout from 'components/layout';
|
||
|
|
||
|
export default function Custom404() {
|
||
|
return (
|
||
|
<Layout title="404 - Page Not Found">
|
||
|
<h1>oops</h1>
|
||
|
</Layout>
|
||
|
);
|
||
|
}
|