Workspaces in Workspaces all around
This commit is contained in:
@@ -1,7 +1,15 @@
|
||||
import { Clock as ClockIcon } from 'lucide-react';
|
||||
import { Clock as ClockIcon, CloudSun, Timer, Target, StickyNote } from 'lucide-react';
|
||||
import type { AppRegistryEntry } from '@/components/Workspace';
|
||||
import { Clock } from './Clock/index';
|
||||
import { Weather } from './Weather/index';
|
||||
import { Pomodoro } from './Pomodoro/index';
|
||||
import { DailyGoals } from './DailyGoals/index';
|
||||
import { QuickNotes } from './QuickNotes/index';
|
||||
|
||||
export const widgetRegistry: Record<string, AppRegistryEntry> = {
|
||||
'clock': { name: 'Clock', icon: ClockIcon, component: () => <Clock /> },
|
||||
'weather': { name: 'Weather', icon: CloudSun, component: () => <Weather /> },
|
||||
'pomodoro': { name: 'Pomodoro', icon: Timer, component: () => <Pomodoro /> },
|
||||
'daily-goals': { name: 'Daily Goals', icon: Target, component: () => <DailyGoals /> },
|
||||
'quick-notes': { name: 'Quick Notes', icon: StickyNote, component: () => <QuickNotes /> },
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user