-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
910adef
commit 84432cb
Showing
1 changed file
with
47 additions
and
0 deletions.
There are no files selected for viewing
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,47 @@ | ||
import { css } from "@emotion/react"; | ||
import InformCard from "components/Card/InformCard"; | ||
import bgLottieHi from "assets/lottieJSON/cardHi.json"; | ||
import bgLottieComm from "assets/lottieJSON/cardComm.json"; | ||
import bgLottieInquiry from "assets/lottieJSON/cardInquiry.json"; | ||
import bgLottieReview from "assets/lottieJSON/cardReview.json"; | ||
import Intro from "components/Introduction/Intro"; | ||
|
||
function Introduction() { | ||
return ( | ||
<main css={mainSizeWrapper}> | ||
<Intro /> | ||
<InformCard | ||
lottieData={bgLottieHi} | ||
introSummary="μ€λ λ λ¨Ήμ§? λ§μ§μ΄ μ΄λκΉ?" | ||
summary="μ¨μλ λ λ μμ μ¨μμ λ§μ§λ€μ νλμ νμΈν μ μμ΄μ" | ||
url="" | ||
/> | ||
<InformCard | ||
lottieData={bgLottieComm} | ||
introSummary="μ¨μμ λ§μ§μ΄ μλ€λ©΄ μΈμ λ μ 보ν΄μ£ΌμΈμ" | ||
summary="λͺ¨λκ° μμ λ‘κ² μν΅ν μ μμ΄μ" | ||
url="" | ||
/> | ||
<InformCard | ||
lottieData={bgLottieReview} | ||
introSummary="νΉλ³νκ³ μμν 리뷰νμ΄μ§" | ||
summary="κ°λ°μμ μ° νκΈ°λ₯Ό ν΅ν΄ λ³ΈμΈλ§μ λ§μ§μ μ°ΎκΈΈ μμν΄μ" | ||
url="/Review" | ||
/> | ||
<InformCard | ||
lottieData={bgLottieInquiry} | ||
introSummary="μ¨μλ λ λ μ μ±μ₯μ μν΄" | ||
summary="μ΄λ€ λ¬Έμ λ νΈνκ² λ¬Έμν΄μ£ΌμΈμ" | ||
url="mailto: 3021062@gmail.com" | ||
/> | ||
</main> | ||
); | ||
} | ||
|
||
export default Introduction; | ||
|
||
const mainSizeWrapper = css` | ||
position: relative; | ||
margin: 1.25rem 1.25rem 0; | ||
padding-bottom: 5.5rem; | ||
`; |