feat: add back to home link

This commit is contained in:
syy11cn 2022-04-06 11:46:44 +08:00
parent 585f0b27b3
commit cf44533d3a
1 changed files with 1 additions and 1 deletions

View File

@ -1,5 +1,5 @@
const NotFound = () => {
return <p className="mt-8">Not Found</p>
return <p className="mt-8">Page not found, <a href="/">back to home</a>.</p>
}
export default NotFound