converted footer to functional component

This commit is contained in:
Kim, Jimin 2021-12-14 21:21:59 +09:00
parent be04d04039
commit 1298b2e8d4

View file

@ -1,11 +1,14 @@
import React from "react"
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome" import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"
import { faGithub } from "@fortawesome/free-brands-svg-icons" import { faGithub } from "@fortawesome/free-brands-svg-icons"
import styled from "styled-components" import styled from "styled-components"
import theming from "../theming" import theming from "../theming"
const StyledFooter = styled.footer` const StyledFooter = styled.footer`
display: flex; display: flex;
height: 7.77rem; /* congratulation. You've found the lucky 777 */
align-items: center;
justify-content: center; justify-content: center;
color: ${(props) => color: ${(props) =>
@ -23,24 +26,18 @@ const StyledFooter = styled.footer`
const StyledFooterContainer = styled.div` const StyledFooterContainer = styled.div`
display: flex; display: flex;
padding: 0 1rem 0 1rem;
justify-content: space-between; justify-content: space-between;
padding: 0 1rem 0 1rem;
height: 100px;
width: 100%;
line-height: 100px;
text-align: center; text-align: center;
color: gray;
width: 100%;
max-width: ${theming.size.screen_size2}; max-width: ${theming.size.screen_size2};
` `
const CreatedBy = styled.div` const StyledGithubLink = styled.a`
color: gray; font-size: 2.5rem;
`
const StyledALink = styled.a`
font-size: 2rem;
color: ${(props) => color: ${(props) =>
theming.theme(props.theme.currentTheme, { theming.theme(props.theme.currentTheme, {
@ -57,23 +54,23 @@ const StyledALink = styled.a`
} }
` `
export default class Footer extends React.Component { const Footer = () => {
render() { return (
return ( <StyledFooter>
<StyledFooter> <StyledFooterContainer>
<StyledFooterContainer> <div>
<CreatedBy> Created by <b>developomp</b>
Created by <b>developomp</b> </div>
</CreatedBy>
<StyledALink <StyledGithubLink
href="https://github.com/developomp/developomp-site" href="https://github.com/developomp/developomp-site"
target="_blank" target="_blank"
> >
<FontAwesomeIcon icon={faGithub} /> <FontAwesomeIcon icon={faGithub} />
</StyledALink> </StyledGithubLink>
</StyledFooterContainer> </StyledFooterContainer>
</StyledFooter> </StyledFooter>
) )
}
} }
export default Footer