Skip to content

Commit

Permalink
feat: 푸터 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
six-standard committed May 12, 2024
1 parent 001a3f2 commit 0a7284b
Show file tree
Hide file tree
Showing 2 changed files with 50 additions and 2 deletions.
3 changes: 3 additions & 0 deletions src/assets/LogoText.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
49 changes: 47 additions & 2 deletions src/components/common/footer/index.tsx
Original file line number Diff line number Diff line change
@@ -1,13 +1,58 @@
import styled from '@emotion/styled';
import Logo from '@/assets/LogoText.svg';

export const Footer = () => {
return <Wrapper></Wrapper>;
return (
<Wrapper>
<img src={Logo} width={150} />
<RightContainer>
<InfoContainer>
<span>소개</span>
<InfoItemContainer>
<span>스퀘어 인프라</span>
<span>사용법 소개</span>
</InfoItemContainer>
</InfoContainer>
<InfoContainer>
<span>지원</span>
<InfoItemContainer>
<span>지원</span>
</InfoItemContainer>
</InfoContainer>
</RightContainer>
</Wrapper>
);
};

const Wrapper = styled.div`
display: flex;
align-items: flex-start;
justify-content: space-around;
padding: 60px 0;
width: 100%;
height: 544px;
background-color: #17181a;
position: absolute;
z-index: 11;
`;

const RightContainer = styled.div`
display: flex;
gap: 60px;
color: white;
`;

const InfoContainer = styled.div`
display: flex;
flex-direction: column;
gap: 30px;
& > span {
color: #747476;
font-weight: bold;
}
`;

const InfoItemContainer = styled.div`
display: flex;
flex-direction: column;
gap: 15px;
`;

0 comments on commit 0a7284b

Please sign in to comment.