Skip to content

Commit

Permalink
[#13] Feat InformationPage - 직원소개 props화한 컴포넌트로 사용
Browse files Browse the repository at this point in the history
  • Loading branch information
ppacman committed Mar 17, 2023
1 parent c97541e commit 3bf7d7f
Showing 1 changed file with 37 additions and 39 deletions.
76 changes: 37 additions & 39 deletions src/components/infoPage/InformationPage.tsx
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>
);
};
Expand Down Expand Up @@ -84,11 +89,4 @@ const ScheduleHeadText = styled.div`
font-weight: bolder;
margin-left: 20px;
`;
const ScheduleBox = styled.div`
`;




const ScheduleBox = styled.div``;

0 comments on commit 3bf7d7f

Please sign in to comment.