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