자 하나씩 순서대로 가자고~ next.js에 styled-components을 적용하는 건 그다지 어렵지 않아. 그냥 설치하고 yarn add styled-components @types/styled-components import해서 사용하면 끝. import type { NextPage } from "next"; import styled from "styled-components"; const Title = styled.h1` color: yellowgreen;//글씨 색 yellow green으로! `; const Home: NextPage = () => { return ( Hello world ); }; export default Home; 그런데 이렇게만 하면 처음 페이지가 로딩될 때 css가 ..