Initial commit from Create Next App

This commit is contained in:
Yidadaa
2023-03-07 23:23:54 +08:00
commit 0decdb3e43
16 changed files with 5849 additions and 0 deletions

3
app/api/hello/route.ts Normal file
View File

@@ -0,0 +1,3 @@
export async function GET(request: Request) {
return new Response('Hello, Next.js!')
}