Skip to content

Commit 37149a2

Browse files
committed
feat: 온보딩페이지
1 parent 9347f53 commit 37149a2

File tree

2 files changed

+9
-17
lines changed

2 files changed

+9
-17
lines changed

public/host_main_onboarding.png

169 KB
Loading

src/app/page.tsx

Lines changed: 9 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -4,25 +4,17 @@ import Button from '@/shared/ui/button/Button';
44

55
export 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
}

0 commit comments

Comments
 (0)