diff options
Diffstat (limited to 'opendc-web/opendc-web-ui/src/components/not-found/TerminalWindow.js')
| -rw-r--r-- | opendc-web/opendc-web-ui/src/components/not-found/TerminalWindow.js | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/opendc-web/opendc-web-ui/src/components/not-found/TerminalWindow.js b/opendc-web/opendc-web-ui/src/components/not-found/TerminalWindow.js index b38fc183..28fd81e9 100644 --- a/opendc-web/opendc-web-ui/src/components/not-found/TerminalWindow.js +++ b/opendc-web/opendc-web-ui/src/components/not-found/TerminalWindow.js @@ -1,5 +1,5 @@ import React from 'react' -import { Link } from 'react-router-dom' +import Link from 'next/link' import BlinkingCursor from './BlinkingCursor' import CodeBlock from './CodeBlock' import { terminalWindow, terminalHeader, terminalBody, segfault, subTitle, homeBtn } from './TerminalWindow.module.scss' @@ -23,8 +23,10 @@ const TerminalWindow = () => ( Got lost? <BlinkingCursor /> </div> - <Link to="/" className={homeBtn}> - <span className="fa fa-home" /> GET ME BACK TO OPENDC + <Link href="/"> + <a className={homeBtn}> + <span className="fa fa-home" /> GET ME BACK TO OPENDC + </a> </Link> </div> </div> |
