feat: finish basic functions

This commit is contained in:
Yidadaa
2023-03-11 02:25:33 +08:00
parent 9912762157
commit 2c9baa4e2c
17 changed files with 2234 additions and 189 deletions

12
app/500.tsx Normal file
View File

@@ -0,0 +1,12 @@
import Link from "next/link";
export default function FourOhFour() {
return (
<>
<h1>500 - Page Not Found</h1>
<Link href="/">
<a>Go back home</a>
</Link>
</>
);
}