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
+1 -3
View File
@@ -1,9 +1,7 @@
import { Clock as ClockIcon, LayoutGrid } from 'lucide-react';
import { Clock as ClockIcon } from 'lucide-react';
import type { AppRegistryEntry } from '@/components/Workspace';
import { Clock } from './Clock/index';
import { Workspaces } from './Workspaces/index';
export const widgetRegistry: Record<string, AppRegistryEntry> = {
'clock': { name: 'Clock', icon: ClockIcon, component: () => <Clock /> },
'workspaces': { name: 'Workspaces', icon: LayoutGrid, component: () => <Workspaces /> },
};