@@ -5,9 +5,10 @@ import { useForm } from 'react-hook-form';
5
5
import Image from 'next/image' ;
6
6
import { startHolyLoader , stopHolyLoader } from 'holy-loader' ;
7
7
import { useRouter } from 'next/navigation' ;
8
- import { Input , Button } from '@/components' ;
8
+ import { Input , Button , Icon } from '@/components' ;
9
9
import { login , sampleLogin } from '@/apis' ;
10
10
import { LoginVo } from '@/types' ;
11
+ import { COLORS , env } from '@/constants' ;
11
12
12
13
const responsiveStyle =
13
14
"flex items-center gap-5 max-MBI:before:inline-block max-MBI:before:bg-[url('/favicon.png')] max-MBI:before:[background-size:_100%_100%] max-MBI:before:w-16 max-MBI:before:h-16" ;
@@ -82,15 +83,27 @@ export const Content = () => {
82
83
>
83
84
로그인
84
85
</ Button >
85
- < span
86
- className = "text-TEXT-ALT text-I2 max-MBI:text-ST5 after:cursor-pointer after:hover:underline after:ml-2 after:content-['체험_계정으로_로그인'] after:text-PRIMARY-MAIN after:inline-block"
87
- onClick = { ( ) => {
88
- startHolyLoader ( ) ;
89
- sampleMutate ( ) ;
90
- } }
91
- >
92
- 서비스를 체험해보고 싶다면?
93
- </ span >
86
+ < div className = "w-[400px] justify-center flex items-center gap-10" >
87
+ < button
88
+ className = "flex gap-2 items-center hover:border-b hover:-mb-[1px] border-b-PRIMARY-MAIN cursor-pointer"
89
+ onClick = { ( ) => {
90
+ startHolyLoader ( ) ;
91
+ sampleMutate ( ) ;
92
+ } }
93
+ >
94
+ < Icon name = "Door" color = { COLORS . PRIMARY . MAIN } size = { 18 } />
95
+ < span className = "text-I2 max-MBI:text-ST5 text-PRIMARY-MAIN" > 체험 계정 로그인 →</ span >
96
+ </ button >
97
+ < a
98
+ target = "_blank"
99
+ rel = "noopener noreferrer"
100
+ href = { env . ARCADE_URL }
101
+ className = "flex gap-2 items-center text-I2 max-MBI:text-ST5 text-PRIMARY-MAIN hover:border-b hover:-mb-[1px] border-b-PRIMARY-MAIN cursor-pointer"
102
+ >
103
+ < Icon name = "Video" color = { COLORS . PRIMARY . MAIN } size = { 18 } />
104
+ < span className = "text-I2 max-MBI:text-ST5 text-PRIMARY-MAIN" > 서비스 사용법 →</ span >
105
+ </ a >
106
+ </ div >
94
107
</ div >
95
108
</ form >
96
109
</ main >
0 commit comments