-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #840 from sparcs-kaist/dev
Main branch update from Dev branch
- Loading branch information
Showing
3 changed files
with
67 additions
and
2 deletions.
There are no files selected for viewing
64 changes: 64 additions & 0 deletions
64
packages/web/src/pages/Home/EventSection/EventSection2024FallResult.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
import { Link } from "react-router-dom"; | ||
|
||
import AdaptiveDiv from "@/components/AdaptiveDiv"; | ||
import Button from "@/components/Button"; | ||
import Title from "@/components/Title"; | ||
import WhiteContainer from "@/components/WhiteContainer"; | ||
|
||
import theme from "@/tools/theme"; | ||
|
||
const EventSection2024FallResult = () => { | ||
const styleText = { | ||
...theme.font14, | ||
marginBottom: "12px", | ||
}; | ||
const styleButton = { | ||
padding: "14px 0 13px", | ||
borderRadius: "12px", | ||
...theme.font14_bold, | ||
}; | ||
|
||
return ( | ||
<AdaptiveDiv type="center"> | ||
<Title icon="festival" isHeader> | ||
추석 이벤트 | ||
</Title> | ||
<WhiteContainer> | ||
<div css={styleText}> | ||
<b>🎉 경품 추첨 결과 발표 및 상품 수령 안내</b> | ||
</div> | ||
<div css={styleText}> | ||
많은 관심을 가지고 이벤트에 참여해 주셔서 감사드립니다. 🙇 | ||
</div> | ||
<div css={styleText}> | ||
인스타그램 게시글을 통해 경품 추첨 결과 및 수령 방법을 확인하실 수 | ||
있습니다. | ||
</div> | ||
<div css={styleText}> | ||
당첨되신 분들께는 이벤트 참여 때 등록해주신 연락처로 경품 수령 방법을 | ||
안내해 드렸으나, 연락을 받지 못하신 분들은{" "} | ||
<b>마이 페이지 {">"} 채널톡 문의하기</b>를 통해 문의주시면 | ||
감사하겠습니다. | ||
</div> | ||
<a | ||
href="https://www.instagram.com/sparcs.kaist/" | ||
target="_blank" | ||
rel="noreferrer" | ||
css={{ textDecoration: "none" }} | ||
> | ||
<Button type="purple" css={styleButton}> | ||
인스타그램에서 추첨 결과 확인하기 | ||
</Button> | ||
</a> | ||
<div css={{ height: "12px" }} /> | ||
<Link to="/event/2024fall-store" css={{ textDecoration: "none" }}> | ||
<Button type="purple" css={styleButton}> | ||
응모권 리더보드 확인하기 | ||
</Button> | ||
</Link> | ||
</WhiteContainer> | ||
</AdaptiveDiv> | ||
); | ||
}; | ||
|
||
export default EventSection2024FallResult; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters