Using next-auth

This commit is contained in:
aronmal 2023-04-23 18:21:18 +02:00
parent b9e72b2a32
commit dab3abdda2
Signed by: aronmal
GPG key ID: 816B7707426FC612
50 changed files with 656 additions and 1525 deletions

View file

@ -0,0 +1,22 @@
import Grid from "../../components/Grid"
import Head from "next/head"
export default function Home() {
return (
<>
<Head>
<title>Create Next App</title>
<meta name="description" content="Generated by create next app" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="icon" href="/favicon.ico" />
</Head>
<main>
<div className="App">
<header className="App-header">
<Grid />
</header>
</div>
</main>
</>
)
}