Skip to content

Commit f0142a2

Browse files

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

packages/twenty-front/src/pages/auth/SignInUp.tsx

+5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import { useMemo } from 'react';
22
import { useRecoilValue } from 'recoil';
33

4+
import { Logo } from '@/auth/components/Logo';
45
import { Title } from '@/auth/components/Title';
56
import { SignInUpForm } from '@/auth/sign-in-up/components/SignInUpForm';
67
import {
@@ -10,6 +11,7 @@ import {
1011
} from '@/auth/sign-in-up/hooks/useSignInUp';
1112
import { useSignInUpForm } from '@/auth/sign-in-up/hooks/useSignInUpForm';
1213
import { currentWorkspaceState } from '@/auth/states/currentWorkspaceState';
14+
import { AnimatedEaseIn } from '@/ui/utilities/animation/components/AnimatedEaseIn';
1315
import { isDefined } from '~/utils/isDefined';
1416

1517
export const SignInUp = () => {
@@ -36,6 +38,9 @@ export const SignInUp = () => {
3638

3739
return (
3840
<>
41+
<AnimatedEaseIn>
42+
<Logo />
43+
</AnimatedEaseIn>
3944
<Title animate>{title}</Title>
4045
<SignInUpForm />
4146
</>

0 commit comments

Comments
 (0)