Skip to content

Commit

Permalink
chore: metatag 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
eun-hak committed Mar 14, 2024
1 parent 35d8496 commit 01029c9
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,21 +26,19 @@ export const metadata: Metadata = {
};

const pretendard = localFont({
src: [
{
src: [{
path: './font/PretendardVariable.woff2',
},
{
path: './font/PretendardVariable.ttf',
},
],
}],
display: 'fallback',
});

export default function RootLayout({
children,
}: {
children: React.ReactNode;
children: React.ReactNode
}) {
return (
<html lang="ko">
Expand All @@ -51,7 +49,9 @@ export default function RootLayout({
<StoreProvider>
<ToastProvider>
<ModalContextProvider>
<RefreshTokenProvider>{children}</RefreshTokenProvider>
<RefreshTokenProvider>
{children}
</RefreshTokenProvider>
</ModalContextProvider>
</ToastProvider>
</StoreProvider>
Expand Down

0 comments on commit 01029c9

Please sign in to comment.