-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[#13] Feat InformationPage - 직원소개 props화한 컴포넌트로 사용
- Loading branch information
Showing
1 changed file
with
37 additions
and
39 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 |
---|---|---|
@@ -1,56 +1,61 @@ | ||
import styled from "styled-components"; | ||
import React from "react"; | ||
import Hyoseong from "./Hyoseong"; | ||
import Geumju from "./Geumju"; | ||
import Cheongjo from "./Cheongjo"; | ||
import Haeyeon from "./Haeyeon"; | ||
import Junhyung from "./Junhyung"; | ||
import Image from "next/image"; | ||
import information from "../../assets/img/information/information.png"; | ||
import schedule from "../../assets/img/information/schedule.png"; | ||
import Scheduler from "./Scheduler" | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
import Scheduler from "./Scheduler"; | ||
import InfoCard from "./InfoCard"; | ||
|
||
const InformationPage = () => { | ||
|
||
|
||
|
||
|
||
|
||
return ( | ||
<Wrapper> | ||
<InfoHead> | ||
<Image src={information} alt={""} width={50} /> | ||
<InfoHeadText>직원정보</InfoHeadText> | ||
</InfoHead> | ||
<StickWrapper> | ||
<Hyoseong /> | ||
|
||
<Geumju /> | ||
|
||
<Cheongjo /> | ||
|
||
<Haeyeon /> | ||
|
||
<Junhyung /> | ||
<InfoCard | ||
name="김 효 성" | ||
task="Front" | ||
number="010-3388-3951" | ||
emailAdress="[email protected]" | ||
/> | ||
|
||
<InfoCard | ||
name="조 금 주" | ||
task="Front" | ||
number="010-0000-0000" | ||
emailAdress="[email protected]" | ||
/> | ||
|
||
<InfoCard | ||
name="박 청 조" | ||
task="Back" | ||
number="010-0000-0000" | ||
emailAdress="[email protected]" | ||
/> | ||
|
||
<InfoCard | ||
name="박 해 연" | ||
task="Back" | ||
number="010-0000-0000" | ||
emailAdress="[email protected]" | ||
/> | ||
|
||
<InfoCard | ||
name="최 준 형 " | ||
task="Front" | ||
number="010-0000-0000" | ||
emailAdress="[email protected]" | ||
/> | ||
</StickWrapper> | ||
<ScheduleHead> | ||
<Image src={schedule} alt={""} width={50} /> | ||
<ScheduleHeadText>스케쥴</ScheduleHeadText> | ||
</ScheduleHead> | ||
<ScheduleBox> | ||
<Scheduler /> | ||
|
||
</ScheduleBox> | ||
|
||
|
||
</Wrapper> | ||
); | ||
}; | ||
|
@@ -84,11 +89,4 @@ const ScheduleHeadText = styled.div` | |
font-weight: bolder; | ||
margin-left: 20px; | ||
`; | ||
const ScheduleBox = styled.div` | ||
`; | ||
|
||
|
||
|
||
|
||
const ScheduleBox = styled.div``; |