From 54f47fbaf4be97e937ead465e01e2e92feedbdbd Mon Sep 17 00:00:00 2001 From: Thomas Date: Fri, 18 Aug 2023 13:14:58 -0300 Subject: [PATCH 1/3] config: allow vercel speed insights --- index.html | 2 ++ 1 file changed, 2 insertions(+) diff --git a/index.html b/index.html index 2bb86b7..e404076 100644 --- a/index.html +++ b/index.html @@ -167,6 +167,8 @@ + + Chat Box From b09baf8c913419778a7fd459561f84a8877328bf Mon Sep 17 00:00:00 2001 From: Thomas Date: Fri, 18 Aug 2023 13:17:17 -0300 Subject: [PATCH 2/3] Revert "config: allow vercel speed insights" This reverts commit 54f47fbaf4be97e937ead465e01e2e92feedbdbd. --- index.html | 2 -- 1 file changed, 2 deletions(-) diff --git a/index.html b/index.html index e404076..2bb86b7 100644 --- a/index.html +++ b/index.html @@ -167,8 +167,6 @@ - - Chat Box From 14698f0d68fed7b627957dd81e1357e4fea49fef Mon Sep 17 00:00:00 2001 From: thomas bouasli Date: Fri, 18 Aug 2023 20:14:11 -0300 Subject: [PATCH 3/3] feat: added links to sign-in and sign-up --- src/auth/pages/sign-in/index.tsx | 8 ++++++++ src/auth/pages/sign-up/index.tsx | 8 ++++++++ 2 files changed, 16 insertions(+) diff --git a/src/auth/pages/sign-in/index.tsx b/src/auth/pages/sign-in/index.tsx index 824b2c5..3a0d704 100644 --- a/src/auth/pages/sign-in/index.tsx +++ b/src/auth/pages/sign-in/index.tsx @@ -1,3 +1,5 @@ +import { Link } from 'react-router-dom'; + import ChatBoxLogoWithTitle from '@/shared/components/molecule/ChatBoxLogoWithTitle'; import DividerWithInfix from '@/shared/components/molecule/Divider'; import SignInForm from '@/shared/components/organism/SignInForm'; @@ -12,6 +14,12 @@ function SignIn() { + + Doesn’t have an account?{' '} + + Sign Up + + ); } diff --git a/src/auth/pages/sign-up/index.tsx b/src/auth/pages/sign-up/index.tsx index bc1a383..f7277d3 100644 --- a/src/auth/pages/sign-up/index.tsx +++ b/src/auth/pages/sign-up/index.tsx @@ -1,3 +1,5 @@ +import { Link } from 'react-router-dom'; + import ChatBoxLogoWithTitle from '@/shared/components/molecule/ChatBoxLogoWithTitle'; import DividerWithInfix from '@/shared/components/molecule/Divider'; import SignUpForm from '@/shared/components/organism/SignUpForm'; @@ -12,6 +14,12 @@ function SignUp() { + + Already has an account?{' '} + + Sign In + + ); }