Website/pages/404.js

15 lines
490 B
JavaScript
Raw Normal View History

2021-11-01 11:36:45 +00:00
import styles from '../styles/404.module.css'
import Link from 'next/link'
export default function NotFound() {
return (
2021-12-21 19:08:36 +00:00
<>
<title>TheRed.SH / 404</title>
2021-11-01 11:36:45 +00:00
<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>
2021-12-21 19:08:36 +00:00
</>
2021-11-01 11:36:45 +00:00
)
}