-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathFinalCTASection.tsx
More file actions
36 lines (33 loc) · 1018 Bytes
/
FinalCTASection.tsx
File metadata and controls
36 lines (33 loc) · 1018 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
import Lottie from 'lottie-react';
import Chippiface from '../assets/5_chippiface.json';
import { Button } from '@pinback/design-system/ui';
const FinalCTASection = () => {
return (
<section className="bg-white-bg flex h-dvh w-full flex-col items-center justify-center gap-[6.4rem] overflow-hidden px-[17.2rem] text-center">
<Lottie
animationData={Chippiface}
loop
autoplay
className="h-[32rem] w-[32rem]"
/>
<div className="flex w-full flex-col items-center text-center">
<p className="head1 mb-[3.1rem] text-black">
다람쥐 치삐와 함께
<br />
도토리를 모아볼까요?
</p>
<div>
<Button
variant="primary"
onClick={() => {
window.location.href = 'https://pinback.today/onboarding';
}}
>
지금 시작하기
</Button>
</div>
</div>
</section>
);
};
export default FinalCTASection;