From 9de26701dd999c7718fe31eebc36e3f6d6f15f5c Mon Sep 17 00:00:00 2001 From: Benjamin Admin Date: Mon, 27 Apr 2026 07:54:53 +0200 Subject: [PATCH] Fix: Remove duplicate Sidebar from /learn (layout.tsx provides it) Co-Authored-By: Claude Opus 4.6 (1M context) --- studio-v2/app/learn/page.tsx | 27 ++------------------------- 1 file changed, 2 insertions(+), 25 deletions(-) diff --git a/studio-v2/app/learn/page.tsx b/studio-v2/app/learn/page.tsx index 4c4ff68..6601a33 100644 --- a/studio-v2/app/learn/page.tsx +++ b/studio-v2/app/learn/page.tsx @@ -2,7 +2,6 @@ import React, { useState, useEffect } from 'react' import { useTheme } from '@/lib/ThemeContext' -import { Sidebar } from '@/components/Sidebar' import { UnitCard } from '@/components/learn/UnitCard' interface LearningUnit { @@ -61,28 +60,7 @@ export default function LearnPage() { } return ( -
- {/* Background Blobs */} -
-
-
-
- - {/* Sidebar */} -
- -
- - {/* Main Content */} -
+ <> {/* Header */}
@@ -155,7 +133,6 @@ export default function LearnPage() {
)}
-
-
+ ) }