Skip to content

Commit

Permalink
Merge pull request #247 from boostcampwm2023/fix/purchase-alert
Browse files Browse the repository at this point in the history
[Fix] 결제 페이지 알럿창 추가
  • Loading branch information
dmson1218 authored Dec 8, 2023
2 parents 2ba7012 + b54217f commit 4b14a5d
Showing 1 changed file with 40 additions and 8 deletions.
48 changes: 40 additions & 8 deletions FE/src/components/PurchaseModal/PurchaseModal.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,19 +17,35 @@ function PurchaseModal() {
구매하기
</PurchaseModalContainerTitle>
<PurchaseModalContentWrapper>
<PurchaseModalContent>
<PurchaseModalContent
onClick={() => {
alert("준비 중인 서비스입니다.");
}}
>
<PurchaseModalText>땅 스킨 구매</PurchaseModalText>
<PurchaseModalText $size='1rem'>100 별가루</PurchaseModalText>
</PurchaseModalContent>
<PurchaseModalContent>
<PurchaseModalContent
onClick={() => {
alert("준비 중인 서비스입니다.");
}}
>
<PurchaseModalText>모양 슬롯 확장</PurchaseModalText>
<PurchaseModalText $size='1rem'>100 별가루</PurchaseModalText>
</PurchaseModalContent>
<PurchaseModalContent>
<PurchaseModalContent
onClick={() => {
alert("준비 중인 서비스입니다.");
}}
>
<PurchaseModalText>광고 제거</PurchaseModalText>
<PurchaseModalText $size='1rem'>350 별가루</PurchaseModalText>
</PurchaseModalContent>
<PurchaseModalContent>
<PurchaseModalContent
onClick={() => {
alert("준비 중인 서비스입니다.");
}}
>
<PurchaseModalText>별숲 후원</PurchaseModalText>
<PurchaseModalText $size='1rem'>30000 별가루</PurchaseModalText>
</PurchaseModalContent>
Expand All @@ -40,15 +56,23 @@ function PurchaseModal() {
환전하기
</PurchaseModalContainerTitle>
<ExchangeModalContentWrapper>
<PurchaseModalContent>
<PurchaseModalContent
onClick={() => {
alert("준비 중인 서비스입니다.");
}}
>
<StarIcon src={oneStar} alt='oneStar' width='5rem' />
<ContentTextWrapper>
<PurchaseModalText>별가루</PurchaseModalText>
<PurchaseModalText $size='1.2rem'>100</PurchaseModalText>
</ContentTextWrapper>
<PurchaseModalText>₩ 1000</PurchaseModalText>
</PurchaseModalContent>
<PurchaseModalContent>
<PurchaseModalContent
onClick={() => {
alert("준비 중인 서비스입니다.");
}}
>
<StarIcon src={twoStar} alt='twoStar' width='4.5rem' />
<ContentTextWrapper>
<PurchaseModalText>별가루</PurchaseModalText>
Expand All @@ -57,7 +81,11 @@ function PurchaseModal() {
</ContentTextWrapper>
<PurchaseModalText>₩ 5000</PurchaseModalText>
</PurchaseModalContent>
<PurchaseModalContent>
<PurchaseModalContent
onClick={() => {
alert("준비 중인 서비스입니다.");
}}
>
<StarIcon src={threeStar} alt='threeStar' width='4rem' />
<ContentTextWrapper>
<PurchaseModalText>별가루</PurchaseModalText>
Expand All @@ -66,7 +94,11 @@ function PurchaseModal() {
</ContentTextWrapper>
<PurchaseModalText>₩ 10000</PurchaseModalText>
</PurchaseModalContent>
<PurchaseModalContent>
<PurchaseModalContent
onClick={() => {
alert("준비 중인 서비스입니다.");
}}
>
<StarIcon src={fourStar} alt='fourStar' width='10rem' />
<ContentTextWrapper>
<PurchaseModalText>별가루</PurchaseModalText>
Expand Down

0 comments on commit 4b14a5d

Please sign in to comment.