Skip to content

Commit bad9a53

Browse files
authored
Feat(landing): landing page 디테일 수정 (#105)
* feat: 랜딩 유아이 * feat: 링크 연결 * feat: 디자인 디테일 수정
1 parent a0036da commit bad9a53

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

apps/landing/src/components/FeatureBookmarkSection.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ import Bookmark from '../assets/2_bookmark.json';
44
const FeatureBookmarkSection = () => {
55
return (
66
<section className="flex h-dvh items-center justify-center bg-white">
7-
<div className="flex items-center gap-[8rem]">
7+
<div className="flex items-start justify-start gap-[8rem]">
88
{/* 텍스트 영역 */}
9-
<div className="flex flex-col items-start justify-start gap-[2.4rem] text-left">
9+
<div className="flex flex-col items-start gap-[2.4rem] text-left">
1010
<p className="head1">손쉽게 북마크하고 메모까지</p>
1111
<p className="sub2-sb text-font-gray-3">
1212
기억에 남기고 싶은 정보를 <br />

apps/landing/src/components/FeatureReminderSection.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
import Lottie from 'lottie-react';
2-
import lightbulb_chippi_final from '../assets/3_bell.json';
2+
import Bell from '../assets/3_bell.json';
33

44
const FeatureReminderSection = () => {
55
return (
66
<section className="flex h-dvh items-center justify-center bg-white">
7-
<div className="flex items-center gap-[8rem]">
7+
<div className="flex items-start gap-[8rem]">
88
{/* 이미지 영역 (로띠) */}
99
<div className="flex items-center justify-center">
10-
<Lottie animationData={lightbulb_chippi_final} loop autoplay />
10+
<Lottie animationData={Bell} loop autoplay />
1111
</div>
1212
{/* 텍스트 영역 */}
1313
<div className="flex flex-col items-end gap-[2.4rem] text-right">

apps/landing/src/components/FeatureRewardSection.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
import Lottie from 'lottie-react';
2-
import Progress from '../assets/4_up.json';
2+
import Up from '../assets/4_up.json';
33

44
const FeatureRewardSection = () => {
55
return (
66
<section className="flex h-dvh items-center justify-center bg-white">
7-
<div className="flex items-center gap-[8rem]">
7+
<div className="flex items-start gap-[8rem]">
88
{/* 텍스트 영역 */}
99
<div className="flex flex-col items-start justify-end gap-[2.4rem] text-left">
1010
<p className="head1">도토리 보상 루프</p>
@@ -17,7 +17,7 @@ const FeatureRewardSection = () => {
1717

1818
{/* 이미지 영역 (로띠) */}
1919
<div className="flex items-center justify-center">
20-
<Lottie animationData={Progress} loop autoplay />
20+
<Lottie animationData={Up} loop autoplay />
2121
</div>
2222
</div>
2323
</section>

0 commit comments

Comments
 (0)