diff --git a/frontend/src/app/layout.tsx b/frontend/src/app/layout.tsx
index a532c95..f34332c 100644
--- a/frontend/src/app/layout.tsx
+++ b/frontend/src/app/layout.tsx
@@ -4,6 +4,8 @@ import { useState } from "react";
import { AuthProvider } from "react-oidc-context";
import { oidcConfig, userManager } from "muzak/config/auth";
import { Source_Sans_3, Nunito } from "next/font/google";
+import AuthStatus from "muzak/components/AuthStatus";
+import NavigationBar from "muzak/components/NavigationBar";
const sourceSans = Source_Sans_3({
weight: ["400"],
@@ -14,6 +16,16 @@ const nunito = Nunito({
subsets: ["latin"],
});
+function LayoutContent({ children }: { children: React.ReactNode }) {
+ return (
+ <>
+
+ {children}
+
+ >
+ );
+}
+
export default function RootLayout({
children,
}: {
@@ -28,7 +40,9 @@ export default function RootLayout({
return (
- {children}
+
+ {children}
+