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.

19 lines
612 B

import Head from 'next/head'
import styles from '../styles/Gallery.module.css'
import Header from '../components/header';
import Footer from '../components/footer';
export default function Custom404() {
return (
<div style={{ width: "100vw", height: "100vh" }}>
<Header />
<section style={{ color: "white", display: "flex", height: "50vh", margin: "unset", justifyContent: "center", alignItems: "center", gap: "2em" }}>
<h1>404</h1> <h4>|</h4> <h1>Page Not Found</h1>
</section>
<Footer />
</div>
)
}