[Typography(타이포그래피)] Typography 설치부터 적용까지
1개월 인턴 기간 중 디자인에 나와있는 font를 Typography로 모듈화 하고 사용하라는 피드백을 받았다. 1. MUI 설치// with npmnpm install @mui/material @emotion/react @emotion/styled// with yarnyarn add @mui/material @emotion/react @emotion/styled 2. src/thme.ts 생성createTheme을 사용해 커스텀 가능 디자인에 나와있는 스타일 적용 예시) postercomponenets로 HTML 태그도 지정 가능// src/thme.ts"use client";import { createTheme } from "@mui/material";export const theme = creat..
2024.08.01