diff --git a/apps/web/app/_components/eventBanners/FoodSlotMachineBanner.tsx b/apps/web/app/_components/eventBanners/FoodSlotMachineBanner.tsx index a8a7b40..9cecf63 100644 --- a/apps/web/app/_components/eventBanners/FoodSlotMachineBanner.tsx +++ b/apps/web/app/_components/eventBanners/FoodSlotMachineBanner.tsx @@ -1,3 +1,4 @@ +import Link from 'next/link' import { Column, Flex } from '@repo/ui/components/Layout' import { CLIENT_PATH } from '@/_constants/path' import { Icon } from '@repo/ui/components/Icon' @@ -5,7 +6,7 @@ import { Text } from '@repo/ui/components/Text' export const FoodSlotMachineBanner = () => ( ( - + 고민은 그만, 바로 결정해드려요! diff --git a/apps/web/app/layout.tsx b/apps/web/app/layout.tsx index c96f957..971f6a3 100644 --- a/apps/web/app/layout.tsx +++ b/apps/web/app/layout.tsx @@ -3,8 +3,8 @@ import './globals.css' import type { Metadata } from 'next' import QueryProvider from './QueryClientProvider' import localFont from 'next/font/local' -import { initServerMSW } from '@/_mocks/initMSW' -import { MSWProvider } from '@/_mocks/MSWProvider' +// import { initServerMSW } from '@/_mocks/initMSW' +// import { MSWProvider } from '@/_mocks/MSWProvider' import { Column } from '@repo/ui/components/Layout' import { NaverMapProvider } from '@/NaverMapProvider' import { HeroProvider } from '@/HeroProvider' @@ -33,9 +33,55 @@ export const metadata: Metadata = { } const pretendard = localFont({ - src: '../public/fonts/PretendardVariable.woff2', + src: [ + { + path: '../public/fonts/Pretendard-Thin-Subset.woff2', + weight: '100', + style: 'normal', + }, + { + path: '../public/fonts/Pretendard-ExtraLight-Subset.woff2', + weight: '200', + style: 'normal', + }, + { + path: '../public/fonts/Pretendard-Light-Subset.woff2', + weight: '300', + style: 'normal', + }, + { + path: '../public/fonts/Pretendard-Regular-Subset.woff2', + weight: '400', + style: 'normal', + }, + { + path: '../public/fonts/Pretendard-Medium-Subset.woff2', + weight: '500', + style: 'normal', + }, + { + path: '../public/fonts/Pretendard-SemiBold-Subset.woff2', + weight: '600', + style: 'normal', + }, + { + path: '../public/fonts/Pretendard-Bold-Subset.woff2', + weight: '700', + style: 'normal', + }, + { + path: '../public/fonts/Pretendard-ExtraBold-Subset.woff2', + weight: '800', + style: 'normal', + }, + { + path: '../public/fonts/Pretendard-Black-Subset.woff2', + weight: '900', + style: 'normal', + }, + ], display: 'swap', - weight: '45 920', + variable: '--font-pretendard', }) export default async function RootLayout({ @@ -43,24 +89,24 @@ export default async function RootLayout({ }: { children: React.ReactNode }) { - await initServerMSW() + // await initServerMSW() return ( - - - - -
- - {children} - -
-
-
-
-
+ {/**/} + + + +
+ + {children} + +
+
+
+
+ {/*
*/}