Skip to content

Commit

Permalink
[#13] Add InformationPage - 컴포넌트배치
Browse files Browse the repository at this point in the history
  • Loading branch information
ppacman committed Feb 13, 2023
1 parent d670994 commit f2db6fd
Showing 1 changed file with 54 additions and 0 deletions.
54 changes: 54 additions & 0 deletions src/infoPage/PersonInfo.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
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"
const PersonInfo = () => {
return (
<Wrrapper>
<InfoHead>
<Image src ={information} alt = {""} width = {50} />
<HeadText>직원정보</HeadText>
</InfoHead>
<StickWrapper>
<Hyoseong />

<Geumju />

<Cheongjo />

<Haeyeon />

<Junhyung />
</StickWrapper>

</Wrrapper>
);
};

export default PersonInfo;
const Wrrapper = styled.div`
`;
const InfoHead = styled.div`
display: flex;
margin : 40px;
`;
const HeadText = styled.p`
align-self: center;
font-size : 40px;
font-weight: bolder;
margin-left : 20px;
`;
const StickWrapper = styled.div`
position: relative;
display: flex;
justify-content: space-around;
margin-bottom: 300px;
`;

0 comments on commit f2db6fd

Please sign in to comment.