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 = { 'clock': { name: 'Clock', icon: ClockIcon, component: () => }, 'weather': { name: 'Weather', icon: CloudSun, component: () => }, 'pomodoro': { name: 'Pomodoro', icon: Timer, component: () => }, 'daily-goals': { name: 'Daily Goals', icon: Target, component: () => }, 'quick-notes': { name: 'Quick Notes', icon: StickyNote, component: () => }, };