diff --git a/src/App.js b/src/App.js index 017d13b..2ec569e 100644 --- a/src/App.js +++ b/src/App.js @@ -2,18 +2,11 @@ import {GlobalStyle} from "./style/GlobalStyle"; import styled, {ThemeProvider} from "styled-components"; import {Resize} from "./component/Resize"; import {Theme} from "./style/theme"; -import Header from "./component/Header"; import Footer from "./component/Footer"; import UiSection from "./section/UiSection"; import React, {useEffect} from "react"; import {UiContextProvider} from "./context/UiReducer"; import Page from "./page/Page"; -import {PortfolioPage} from "./page/PortfolioPage"; - -const Test = styled.div` - height: var(--footer-height); - background-color: #f00; -` function App() { useEffect(() => { diff --git a/src/component/ProfileList.js b/src/component/ProfileList.js index e2273e5..d5b51c3 100644 --- a/src/component/ProfileList.js +++ b/src/component/ProfileList.js @@ -21,7 +21,7 @@ const ProfileListStyle = styled.li` h3 { color: ${p => p.theme.color.Gray9}; font-weight: 600; - font-size: 1.3em; + font-size: 1.4em; display: inline-block; } diff --git a/src/component/Resize.js b/src/component/Resize.js index 6ca9d10..e79614e 100644 --- a/src/component/Resize.js +++ b/src/component/Resize.js @@ -8,12 +8,13 @@ export const Resize = () => { document.documentElement.style.setProperty("--vh", `${vh}px`) document.documentElement.style.setProperty("--vw", `${vw}px`) } + useEffect(() => { handleResize() window.addEventListener("resize", handleResize) return () => { window.removeEventListener("resize", handleResize) } - }) + }, []) return
} \ No newline at end of file diff --git a/src/page/Page.js b/src/page/Page.js index 6b53be8..64084ca 100644 --- a/src/page/Page.js +++ b/src/page/Page.js @@ -3,12 +3,13 @@ import {PageBasicStyle} from "../style/BasicStyle"; import {FirstSection} from "../section/FirstSection"; import {BusinessCardSection} from "../section/BusinessCardSection"; import {ProfileSection} from "../section/ProfileSection"; -import Header from "../component/Header"; +import {ProjectSection} from "../section/ProjectSection"; const PageStyle = styled.div` ${PageBasicStyle}; ` + const Page = () => { return (IT 직군 사람들을 위한 팀빌딩 어플리케이션
프로젝트 팀장과 Android개발을 담당했습니다.