Workspaces left panel in homepage

This commit is contained in:
2026-02-18 20:00:42 +00:00
parent 7092c2665a
commit 72bca6cd42
8 changed files with 85 additions and 257 deletions
@@ -6,10 +6,21 @@ import { appRegistry } from '../Workspaces/app-registry';
const initialLayout: LayoutNode = {
type: 'group',
id: 'home-root',
direction: 'vertical',
direction: 'horizontal',
children: [
{ node: { type: 'panel', id: 'homepage-widget-panel', appType: 'widget-panel' }, size: 60 },
{ node: { type: 'panel', id: 'home-bottom', appType: 'chat-launcher' }, size: 40 },
{ node: { type: 'panel', id: 'home-left', appType: 'workspace-list' }, size: 20 },
{
node: {
type: 'group',
id: 'home-right',
direction: 'vertical',
children: [
{ node: { type: 'panel', id: 'homepage-widget-panel', appType: 'widget-panel' }, size: 60 },
{ node: { type: 'panel', id: 'home-chat', appType: 'chat-launcher' }, size: 40 },
],
},
size: 80,
},
],
};