fix global layout issue on edit and account pages

This commit is contained in:
rsandb
2022-12-28 12:23:14 -06:00
parent f534def85d
commit 6f2688b6a7
2 changed files with 0 additions and 4 deletions
-2
View File
@@ -40,7 +40,6 @@ export default function Account() {
content="Conversational AI for everyone. An open source project to create a chat enabled GPT LLM run by LAION and contributors around the world."
/>
</Head>
<Header />
<main className="h-3/4 z-0 bg-white flex flex-col items-center justify-center">
<p>{session.user.name || "No username"}</p>
<form onSubmit={updateUser}>
@@ -58,7 +57,6 @@ export default function Account() {
</form>
<p>{session.user.email}</p>
</main>
<Footer />
</>
);
}
-2
View File
@@ -38,7 +38,6 @@ export default function Account() {
content="Conversational AI for everyone. An open source project to create a chat enabled GPT LLM run by LAION and contributors around the world."
/>
</Head>
<Header />
<main className="h-3/4 z-0 bg-white flex flex-col items-center justify-center">
<p>{username}</p>
<Button>
@@ -46,7 +45,6 @@ export default function Account() {
</Button>
<p>{session.user.email}</p>
</main>
<Footer />
</>
);
}