aboutsummaryrefslogtreecommitdiff
path: root/communities/red-right-hand/174bg.net/src/app
diff options
context:
space:
mode:
Diffstat (limited to 'communities/red-right-hand/174bg.net/src/app')
-rw-r--r--communities/red-right-hand/174bg.net/src/app/layout.js12
1 files changed, 2 insertions, 10 deletions
diff --git a/communities/red-right-hand/174bg.net/src/app/layout.js b/communities/red-right-hand/174bg.net/src/app/layout.js
index 4535f5e..ce97609 100644
--- a/communities/red-right-hand/174bg.net/src/app/layout.js
+++ b/communities/red-right-hand/174bg.net/src/app/layout.js
@@ -1,9 +1,6 @@
-import { ClerkProvider } from "@clerk/nextjs";
import { Inter, Fira_Code } from "next/font/google";
-import { Suspense } from "react";
import "./globals.css";
import TerminalOverlay from "@/components/TerminalOverlay";
-import AuthHeader from "@/components/AuthHeader";
const inter = Inter({
variable: "--font-inter",
@@ -30,13 +27,8 @@ export default function RootLayout({ children }) {
className={`${inter.variable} ${firaCode.variable} h-full antialiased`}
>
<body className="min-h-full flex flex-col">
- <ClerkProvider>
- <Suspense>
- <AuthHeader />
- </Suspense>
- <TerminalOverlay />
- {children}
- </ClerkProvider>
+ <TerminalOverlay />
+ {children}
</body>
</html>
);