import type { Metadata } from "next"; import { Inter, Noto_Sans_KR } from "next/font/google"; import "./globals.css"; import { cn } from "@/lib/utils"; const NotoSansKR = Noto_Sans_KR({ subsets: ["latin"], variable: "--font-sans", }); export const metadata: Metadata = { title: "Create Next App", description: "Generated by create next app", }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children} ); }