File size: 634 Bytes
2dddd1f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import { Outlet } from 'react-router-dom';
import { Sidebar } from './Sidebar';
import { MobileNav } from './MobileNav';

export function MainLayout() {
    return (
        <div className="flex flex-col md:flex-row h-screen bg-neutral-950 text-neutral-100 overflow-hidden font-sans">
            <Sidebar />
            
            <main className="flex-1 overflow-y-auto p-4 md:pl-0 h-full">
                <div id="main-content-area" className="h-full glass-panel overflow-y-auto relative no-scrollbar">
                    <Outlet />
                </div>
            </main>

            <MobileNav />
        </div>
    );
}