Add frontend skeleton

This commit is contained in:
2023-06-09 18:56:06 +04:00
parent 4d45992279
commit f2fe26826c
8 changed files with 340 additions and 0 deletions

11
frontend/app/page.js Normal file
View File

@@ -0,0 +1,11 @@
export default async function Home() {
return (
<main>
<pre>
{JSON.stringify(new Date(), null, 2)}
</pre>
</main>
)
}