File size: 409 Bytes
86deab0
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
import { SideNav } from './SideNav';

export function AppShell({ children }: { children: React.ReactNode }) {
  return (
    <div className="flex min-h-screen bg-background font-body text-on-surface antialiased">
      <SideNav />
      <div className="flex min-h-screen min-w-0 flex-1 flex-col pl-64">
        <main className="min-h-screen flex-1 bg-surface">{children}</main>
      </div>
    </div>
  );
}