testing vercel deployment

This commit is contained in:
Samuel Andert
2023-07-12 14:07:15 +02:00
parent b8ee2c17ee
commit 232f7ce380
36 changed files with 1692 additions and 2 deletions

11
app/layout.tsx Normal file
View File

@ -0,0 +1,11 @@
export default function RootLayout({
children,
}: {
children: React.ReactNode
}) {
return (
<html lang="en">
<body>{children}</body>
</html>
)
}

3
app/page.tsx Normal file
View File

@ -0,0 +1,3 @@
export default function Page() {
return <h1>Hello, Next.js!</h1>
}

View File

@ -0,0 +1,3 @@
import { createBuiltMeshHTTPHandler } from './../../../../../.mesh'
export default createBuiltMeshHTTPHandler()