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.
18 lines
615 B
18 lines
615 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 Custom500() {
|
|
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>500</h1> <h4>|</h4> <h1>Internal Server Error</h1>
|
|
</section>
|
|
|
|
<Footer />
|
|
</div>
|
|
)
|
|
} |