import "styles/globals.css" import { ServerThemeProvider } from "next-themes" interface RootLayoutProps { children: React.ReactNode } export default function RootLayout({ children }: RootLayoutProps) { return ( Drift {children} ) }