File tree Expand file tree Collapse file tree 2 files changed +9
-17
lines changed
Expand file tree Collapse file tree 2 files changed +9
-17
lines changed Original file line number Diff line number Diff line change @@ -4,25 +4,17 @@ import Button from '@/shared/ui/button/Button';
44
55export default function OnboardingPage ( ) {
66 return (
7- < div className = 'flex min-h-screen flex-col items-center justify-between px-5 py-10' >
8- < div className = 'flex flex-1 items-center justify-center' >
9- < div className = 'text-center' >
10- { /* TODO: 실제 로고 이미지로 교체 필요 */ }
11- < div className = 'mb-8 flex justify-center' >
12- < div className = 'bg-primary-default flex h-24 w-24 items-center justify-center rounded-full' >
13- < span className = 'text-headline-2 text-text-inverse' > LOGO</ span >
14- </ div >
15- </ div >
7+ < div
8+ className = 'flex min-h-screen flex-col bg-cover bg-center bg-no-repeat'
9+ style = { { backgroundImage : "url('/host_main_onboarding.png')" } }
10+ >
11+ < div className = 'flex-1' />
1612
17- < h1 className = 'text-headline-2 text-text-primary mb-4 ' >
18- 온보딩 페이지
19- </ h1 >
20- </ div >
13+ < div className = 'p-5 ' >
14+ < Link href = '/create' className = 'w-full' >
15+ < Button fullWidth > 시작하기 </ Button >
16+ </ Link >
2117 </ div >
22-
23- < Link href = '/create' className = 'w-full' >
24- < Button fullWidth > 시작하기</ Button >
25- </ Link >
2618 </ div >
2719 ) ;
2820}
You can’t perform that action at this time.
0 commit comments