Next.js 13버전에서 글꼴 변경하기 폰트 설정하기
Optimizing: Fonts | Next.js Using App Router Features available in /app nextjs.org Next.js 공식 문서와 영상을 참고했습니다. import './globals.css' import type { Metadata } from 'next' import { Inter } from 'next/font/google' const inter = Inter({ subsets: ['latin'] }) export const metadata: Metadata = { title: 'Create Next App', description: 'Generated by create next app', } export default function RootLayout..