Skip to content

Commit

Permalink
Merge branch 'develop' into feature/BookmarkModify
Browse files Browse the repository at this point in the history
  • Loading branch information
KANGYONGSU23 authored Dec 14, 2023
2 parents 06b7349 + d10e8a3 commit 227d000
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 6 deletions.
Binary file added public/fonts/Pretendard-Bold.woff2
Binary file not shown.
Binary file added public/fonts/Pretendard-Medium.woff2
Binary file not shown.
Binary file added public/fonts/Pretendard-Regular.woff2
Binary file not shown.
24 changes: 18 additions & 6 deletions src/app/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,12 +1,24 @@
import "./globals.css";
import { Noto_Sans_KR } from "@next/font/google";
import Header from "@/components/common/Header";
import Provider from "@/components/Provider";
import SEOConfig from "@/components/SEO";
import localFont from "@next/font/local";
import "./globals.css";

const notoSans = Noto_Sans_KR({
weight: ["400", "500", "700"],
subsets: ["latin"],
const pretendard = localFont({
src: [
{
path: "../../public/fonts/Pretendard-Bold.woff2",
weight: "700",
},
{
path: "../../public/fonts/Pretendard-Medium.woff2",
weight: "500",
},
{
path: "../../public/fonts/Pretendard-Regular.woff2",
weight: "400",
},
],
display: "swap",
});

Expand All @@ -21,7 +33,7 @@ export default function RootLayout({
<body
className={
"w-screen py-[68px] md:px-[17.5vw] sm:px-[7.5vw] min-h-screen " +
notoSans.className
pretendard.className
}
>
<Provider>
Expand Down

0 comments on commit 227d000

Please sign in to comment.