badass auth success page

This commit is contained in:
talksik
2022-03-31 14:42:38 -04:00
parent 6a22fe48bf
commit 1c25fea726
13 changed files with 152 additions and 118 deletions
+8 -1
View File
@@ -7,6 +7,10 @@ function MyApp({ Component, pageProps }: AppProps) {
return (
<>
<Head>
<title>Nirvana - virtual office</title>
<meta name="description" content="Generated by create next app" />
<link rel="icon" href="/logos/1024x1024.ico" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
@@ -14,7 +18,10 @@ function MyApp({ Component, pageProps }: AppProps) {
rel="stylesheet"
/>
</Head>
<Component {...pageProps} />
<main className="min-h-screen min-w-screen bg-zinc-700 flex flex-col">
<Component {...pageProps} />
</main>
</>
);
}