-
+
diff --git a/frontend/src/components/Header/Header.module.css b/frontend/src/components/Header/Header.module.css
index 1b248716..8b839317 100644
--- a/frontend/src/components/Header/Header.module.css
+++ b/frontend/src/components/Header/Header.module.css
@@ -55,7 +55,7 @@
align-items: center;
display: flex;
flex-direction: row;
- gap: 0.5rem 0.25rem;
+ gap: 0.5rem;
justify-content: flex-start;
}
diff --git a/frontend/src/components/Header/index.tsx b/frontend/src/components/Header/index.tsx
index 06c5a914..9efdd579 100644
--- a/frontend/src/components/Header/index.tsx
+++ b/frontend/src/components/Header/index.tsx
@@ -38,11 +38,11 @@ export default function Header() {
-
+
Sign in
-
+
Sign up
diff --git a/frontend/src/components/Home/index.tsx b/frontend/src/components/Home/index.tsx
index 2e77318c..0e1304b1 100644
--- a/frontend/src/components/Home/index.tsx
+++ b/frontend/src/components/Home/index.tsx
@@ -6,7 +6,7 @@ export default function Home() {
<>
Homepage
-
+
Something beautiful is about to happen here <3
diff --git a/frontend/src/components/Layout/Layout.module.css b/frontend/src/components/Layout/Layout.module.css
index 6a922e33..89aa9dc7 100644
--- a/frontend/src/components/Layout/Layout.module.css
+++ b/frontend/src/components/Layout/Layout.module.css
@@ -1,5 +1,5 @@
.layout {
- margin-block: 2rem;
+ padding-block: 2rem;
&.vertically-center {
align-items: center;
diff --git a/frontend/src/components/Layout/index.tsx b/frontend/src/components/Layout/index.tsx
index e861734e..c2c1e704 100644
--- a/frontend/src/components/Layout/index.tsx
+++ b/frontend/src/components/Layout/index.tsx
@@ -7,6 +7,7 @@ type LayoutProps = Overwrite
, {
}>
export default function Layout({ children, className, verticallyCenter = false, ...props }: LayoutProps) {
+
return (
a {
+ font-size: 0.875rem;
}
}
-.card {
- margin-inline: auto;
- max-width: 32rem;
+.sign-up-link {
+ font-size: 0.875rem;
+ text-align: center;
}
+
diff --git a/frontend/src/components/SignIn/index.tsx b/frontend/src/components/SignIn/index.tsx
index 21646bf4..4a85f65d 100644
--- a/frontend/src/components/SignIn/index.tsx
+++ b/frontend/src/components/SignIn/index.tsx
@@ -4,8 +4,9 @@ import { useErrorBoundary } from "react-error-boundary";
import { useForm } from "react-hook-form";
import { Link } from "wouter";
import ActivityOverlay from "~/components/ActivityOverlay";
+import AuthenticationHeader from "~/components/AuthenticationHeader";
import Layout from "~/components/Layout";
-import styles from "~/components/SignIn/SignIn.module.css";
+import styles from "./SignIn.module.css";
import Title from "~/components/Title";
import { api } from "~/lib/api";
import { setErrors } from "~/lib/form";
@@ -22,7 +23,7 @@ type State = {
export default function SignIn() {
const { showBoundary } = useErrorBoundary();
const [isAlreadySignedIn] = useState(false);
- const [signedIn, setSignedIn] = useState(true);
+ const [signedIn, setSignedIn] = useState(false);
const [state, setState] = useState({ isInProgress: false });
const { formState: { errors }, handleSubmit, register, setError } = useForm