import "@styles/globals.css" import { LayoutWrapper } from "./root-layout-wrapper" import { ServerThemeProvider } from "@wits/next-themes" interface RootLayoutProps { children: React.ReactNode } export default async function RootLayout({ children }: RootLayoutProps) { return ( {children} ) }