blob: 93eabab14a1129c7cf49e54aa9914f9409d80f5d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
import React from "react";
import Head from "next/head";
import PageBase from "../modules/PageBase";
const NotFoundPage = () => {
return (
<PageBase>
<Head>
<title>404 - Ragtag Archive</title>
</Head>
<div>
<div className="px-4">
<h1 className="text-3xl mt-16 text-center">404</h1>
<p className="text-lg text-center mb-16">Page not found</p>
</div>
</div>
</PageBase>
);
};
export default NotFoundPage;
|