work on editor

This commit is contained in:
Philipinho
2023-10-26 00:35:49 +01:00
parent 968b9c3a0f
commit fd2ef3a906
27 changed files with 1616 additions and 271 deletions

View File

@ -19,6 +19,7 @@ export default function Shell({ children }: { children: React.ReactNode }) {
breakpoint: 'sm',
collapsed: { mobile: !mobileOpened, desktop: !desktopOpened },
}}
aside={{ width: 300, breakpoint: 'md', collapsed: { desktop: false, mobile: true } }}
padding="md"
>
<AppShell.Header>
@ -45,7 +46,14 @@ export default function Shell({ children }: { children: React.ReactNode }) {
<Navbar />
</AppShell.Navbar>
<AppShell.Main>{children}</AppShell.Main>
<AppShell.Main>
{children}
</AppShell.Main>
<AppShell.Aside>
TODO
</AppShell.Aside>
</AppShell>
);
}