File tree 1 file changed +5
-0
lines changed
packages/twenty-front/src/pages/auth
1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change 1
1
import { useMemo } from 'react' ;
2
2
import { useRecoilValue } from 'recoil' ;
3
3
4
+ import { Logo } from '@/auth/components/Logo' ;
4
5
import { Title } from '@/auth/components/Title' ;
5
6
import { SignInUpForm } from '@/auth/sign-in-up/components/SignInUpForm' ;
6
7
import {
@@ -10,6 +11,7 @@ import {
10
11
} from '@/auth/sign-in-up/hooks/useSignInUp' ;
11
12
import { useSignInUpForm } from '@/auth/sign-in-up/hooks/useSignInUpForm' ;
12
13
import { currentWorkspaceState } from '@/auth/states/currentWorkspaceState' ;
14
+ import { AnimatedEaseIn } from '@/ui/utilities/animation/components/AnimatedEaseIn' ;
13
15
import { isDefined } from '~/utils/isDefined' ;
14
16
15
17
export const SignInUp = ( ) => {
@@ -36,6 +38,9 @@ export const SignInUp = () => {
36
38
37
39
return (
38
40
< >
41
+ < AnimatedEaseIn >
42
+ < Logo />
43
+ </ AnimatedEaseIn >
39
44
< Title animate > { title } </ Title >
40
45
< SignInUpForm />
41
46
</ >
You can’t perform that action at this time.
0 commit comments