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() {
)}
-
-
+ ) }