Fixed docker deploments, moved files to _folders in dispatch app

This commit is contained in:
PxlLoewe
2025-05-27 17:34:44 -07:00
parent 5d5b2dc91f
commit 571ddfba85
60 changed files with 251 additions and 406 deletions

View File

@@ -13,7 +13,7 @@ const geistMono = Geist_Mono({
subsets: ["latin"],
});
export default async ({
const RootLayout = async ({
children,
}: Readonly<{
children: React.ReactNode;
@@ -23,12 +23,14 @@ export default async ({
return (
<html lang="en">
<NextAuthSessionProvider session={session}>
<body
className={`${geistSans.variable} ${geistMono.variable} antialiased`}
>
<body className={`${geistSans.variable} ${geistMono.variable} antialiased`}>
{children}
</body>
</NextAuthSessionProvider>
</html>
);
};
RootLayout.displayName = "RootLayout";
export default RootLayout;