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 ( <> Page Not Found - OpenDC
) } export default NotFound