Skip to content

Commit

Permalink
[#36] apply Introduction page
Browse files Browse the repository at this point in the history
  • Loading branch information
hanseulhee committed Jul 29, 2022
1 parent 910adef commit 84432cb
Showing 1 changed file with 47 additions and 0 deletions.
47 changes: 47 additions & 0 deletions src/pages/Introduction/index.tsx
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;
`;

0 comments on commit 84432cb

Please sign in to comment.