diff --git a/src/components/FeatureIdeaCloud/constants.ts b/src/components/FeatureIdeaCloud/constants.ts index 08cc2fd..982e785 100644 --- a/src/components/FeatureIdeaCloud/constants.ts +++ b/src/components/FeatureIdeaCloud/constants.ts @@ -15,3 +15,16 @@ export const PRIORITY_COLORS = { medium: 'border-amber-400/60 bg-amber-50/80 dark:bg-amber-950/40', high: 'border-red-400/60 bg-red-50/80 dark:bg-red-950/40', } + +// Missing exports for GROUP_COLORS, CATEGORIES, PRIORITIES, STATUSES +export const GROUP_COLORS = { + default: '#a78bfa', + primary: '#60a5fa', + success: '#34d399', + warning: '#fbbf24', + danger: '#f87171', +} + +export const CATEGORIES = ['feature', 'enhancement', 'bug', 'documentation', 'other'] as const +export const PRIORITIES = ['low', 'medium', 'high'] as const +export const STATUSES = ['idea', 'planned', 'in-progress', 'completed'] as const diff --git a/src/components/atoms/index.ts b/src/components/atoms/index.ts index 0522d9d..345ba5c 100644 --- a/src/components/atoms/index.ts +++ b/src/components/atoms/index.ts @@ -2,6 +2,7 @@ export { ActionButton } from './ActionButton' export { ActionCard } from './ActionCard' export { ActionIcon } from './ActionIcon' +export { Accordion } from './Accordion' export { Alert } from './Alert' export { AppLogo } from './AppLogo' export { Avatar } from './Avatar' @@ -71,7 +72,7 @@ export { MetricDisplay } from './MetricDisplay' export { Modal } from './Modal' export { Notification } from './Notification' export { NumberInput } from './NumberInput' -export { BasicPageHeader as PageHeader } from './PageHeader' +export { BasicPageHeader, BasicPageHeader as PageHeader } from './PageHeader' export { PanelHeader } from './PanelHeader' export { PasswordInput } from './PasswordInput' export { Popover } from './Popover' diff --git a/src/components/molecules/AppBranding.tsx b/src/components/molecules/AppBranding.tsx new file mode 100644 index 0000000..07d9b37 --- /dev/null +++ b/src/components/molecules/AppBranding.tsx @@ -0,0 +1,10 @@ +import { AppLogo } from '@/components/atoms' + +export function AppBranding() { + return ( +
+ + Spark +
+ ) +} diff --git a/src/components/molecules/index.ts b/src/components/molecules/index.ts index 0c90ca4..9d9531a 100644 --- a/src/components/molecules/index.ts +++ b/src/components/molecules/index.ts @@ -1,4 +1,5 @@ export { Breadcrumb } from './Breadcrumb' +export { AppBranding } from './AppBranding' export { CanvasRenderer } from './CanvasRenderer' export { CodeExplanationDialog } from './CodeExplanationDialog' export { ComponentPalette } from './ComponentPalette'