Website/pages/404.js
2021-11-01 13:36:45 +02:00

12 lines
428 B
JavaScript

import styles from '../styles/404.module.css'
import Link from 'next/link'
export default function NotFound() {
return (
<div className={styles.Card} style={{width:"400px", textAlign: "center", display: "block", marginLeft: "calc(50% - 200px)"}}>
Error: 404;
Page not found!<br/>
<Link href="/"><a><span className={styles.CodeBox}>Go back</span></a></Link>
</div>
)
}