refactor: organise

This commit is contained in:
M1000fr 2024-12-13 13:31:41 +01:00
parent 1dbd24f2e6
commit 135d94c976
2 changed files with 2 additions and 2 deletions

View File

@ -7,7 +7,7 @@ const LoginPage = () => {
return (
<div className="flex flex-col h-screen items-center justify-center bg-gradient-to-br from-green-700 to-green-950 bg-[length:200%_200%] animate-gradient-x text-white">
<div className="flex flex-col justify-center items-center w-1/2 gap-6 bg-black bg-opacity-40 p-4 rounded-md">
<div className="flex flex-col justify-center items-center gap-6 bg-black bg-opacity-40 rounded-md p-5 mx-5 w-2/3">
<div className="flex items-center w-full gap-5">
<div className="border-t border-white flex-grow"></div>
<h1 className="text-3xl font-bold">Toogether</h1>

View File

@ -7,7 +7,7 @@ export default function RootLayout({
children: React.ReactNode;
}) {
return (
<html lang="en">
<html lang="fr">
<body>
<SessionProviderWrapper>{children}</SessionProviderWrapper>
</body>