diff --git a/src/app/(app)/layout.tsx b/src/app/(app)/layout.tsx
index c6db69c..31a9c32 100644
--- a/src/app/(app)/layout.tsx
+++ b/src/app/(app)/layout.tsx
@@ -1,5 +1,3 @@
-import { Header } from "@/components/header";
-
interface AppLayoutProps {
children: React.ReactNode;
}
@@ -7,7 +5,6 @@ interface AppLayoutProps {
export default function AppLayout({ children }: AppLayoutProps) {
return (
-
{children}
diff --git a/src/app/(app)/playground/layout.tsx b/src/app/(app)/playground/layout.tsx
index 51fb3e8..4885116 100644
--- a/src/app/(app)/playground/layout.tsx
+++ b/src/app/(app)/playground/layout.tsx
@@ -3,6 +3,7 @@ import {
ResizablePanel,
ResizablePanelGroup,
} from "@/components/ui/resizable";
+import { Header } from "@/components/header";
interface PlaygroundLayoutProps {
problem: React.ReactNode;
@@ -14,17 +15,26 @@ export default function PlaygroundLayout({
workspace,
}: PlaygroundLayoutProps) {
return (
-
-
- {problem}
-
-
-
- {workspace}
-
-
+
+
+
+
+ {problem}
+
+
+
+ {workspace}
+
+
+
);
}