const { StackProvider, StackTheme } = require("@hexclave/next"); const { hexclaveServerApp } = require("../hexclave"); require("./globals.css"); function RootLayout({ children, }: any) { return ( {children} ); } module.exports = RootLayout;