blob: cc9281fc5025dde7c82ea7422b817d20cfc39190 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
import React from 'react'
import Head from 'next/head'
import TerminalWindow from '../components/not-found/TerminalWindow'
import style from './404.module.scss'
const NotFound = () => {
return (
<>
<Head>
<title>Page Not Found - OpenDC</title>
</Head>
<div className={style['not-found-backdrop']}>
<TerminalWindow />
</div>
</>
)
}
export default NotFound
|