File tree Expand file tree Collapse file tree 1 file changed +42
-0
lines changed
Expand file tree Collapse file tree 1 file changed +42
-0
lines changed Original file line number Diff line number Diff line change 1+ 'use client' ;
2+ import Image from 'next/image' ;
3+ import { useRouter } from 'next/router' ;
4+
5+ const HiddenReward = ( ) => {
6+ const router = useRouter ( ) ;
7+
8+ return (
9+ < div
10+ className = '
11+ relative w-full h-[100vh]
12+ bg-gradient-to-b from-mint-500 to-white
13+ flex flex-col justify-center items-center text-center
14+ overflow-hidden
15+ '
16+ onClick = { ( ) => console . log ( '히든 리워드 클릭: 다음 페이지 이동' ) }
17+ >
18+ < h1 className = ' text-black mb-[4.5rem] text-headline-lg-serif ' >
19+ Congrats!
20+ </ h1 >
21+
22+ < p className = 'text-title-sm text-black mb-[6rem]' >
23+ 축하합니다! < br />
24+ 히든 리워드를 획득하셨습니다.
25+ </ p >
26+
27+ < div className = 'relative w-[16rem] h-[16rem] mb-[6rem] bg-amber-100 rounded-full' >
28+ 로띠 예정
29+ </ div >
30+
31+ < p className = 'text-label-md text-black mb-[7rem]' >
32+ 가톨릭대 전설의 포켓몬 < br />
33+ ‘나무를 수호하는 종철씨’를 < br />
34+ 획득하셨습니다!
35+ </ p >
36+
37+ < p className = 'text-label-serif text-mint-500' > click!</ p >
38+ </ div >
39+ ) ;
40+ } ;
41+
42+ export default HiddenReward ;
You can’t perform that action at this time.
0 commit comments