fix login page style

This commit is contained in:
João Geonizeli
2022-07-26 15:00:38 -03:00
parent e24449adbc
commit 1aa0ee03b4
7 changed files with 30 additions and 34 deletions

View File

@@ -1,23 +0,0 @@
import React from "react";
import { Button } from "../../components";
export const SignIn = () => {
const handleLogin = async () => {
}
return (
<div className="w-screen h-screen bg-primary-normal grid place-items-center">
<div>
<img
alt="Logo do Unifeso"
src={'unifesoLogo'}
style={{ width: "85%", margin: "auto" }}
/>
<div className="grid place-items-center">
<Button onClick={handleLogin}>Faça login no Google</Button>
</div>
</div>
</div>
);
};

View File

@@ -1,3 +1,2 @@
export { SignIn } from "./SignIn";
export { Profile } from "./Profile";
export { UnauthorizedAccess } from "./UnauthorizedAccess";