Authentication And Serive Engineer Portal is added

This commit is contained in:
2026-07-18 13:44:32 +05:30
parent 3222da96ab
commit a0426e8c8a
17 changed files with 762 additions and 221 deletions

View File

@@ -1,6 +1,6 @@
import "./globals.css";
import SessionWrapper from "./sessionWrapper";
export default function RootLayout({
@@ -12,7 +12,11 @@ export default function RootLayout({
<html
lang="en"
>
<body >{children}</body>
<body>
<SessionWrapper>
{children}
</SessionWrapper>
</body>
</html>
);
}