more ignored words

This commit is contained in:
2022-02-24 07:55:49 +01:00
parent dc515f3316
commit 8777be462d
3 changed files with 10 additions and 8 deletions

View File

@@ -14,19 +14,21 @@ export default function Home() {
if (session) {
return (
<div className={styles.container}>
<div className="">
<Head>
<title>Wastpol</title>
</Head>
<div className="flex justify-between">
<div className="flex md:flex-row flex-col justify-between px-8 mt-2">
<Nav />
<UserTop session={session} />
</div>
<main className="flex flex-1 flex-col justify-center items-center p-8 mx-36 mt-12 rounded-md shadow-md transition-all duration-500 hover:shadow-xl">
<Header />
<Generator />
<main className="flex flex-1 flex-col items-center">
<div className="flex flex-col items-center p-8 mt-12 rounded-md shadow-md transition-all duration-500 hover:shadow-xl">
<Header />
<Generator />
</div>
</main>
</div>
);