What problem does it solve?
Help artists capture and organise creative ideas with minimal friction. The goal is clarity, not complexity.
Core Features & Use Cases
- Canvas vs List Mode: Recommend canvas for visual thinkers, brainstorming; recommend list for sequential planners, task-oriented users; handle view switching with smooth transitions; preserve positions when switching modes
- Organisation Patterns: Tag-based categorisation (content/brand/music/promo); colour coding for visual priority; drag-and-drop positioning; spatial grouping for related ideas
- Tagging Strategies
// Tag categories
type IdeaTag = 'content' | 'brand' | 'music' | 'promo' | 'collab' | 'release'
// Colour mapping
const tagColours = {
content: '#3AA9BE', // Slate Cyan (accent)
brand: '#8B5CF6', // Purple
music: '#10B981', // Green
promo: '#F59E0B', // Amber
collab: '#EC4899', // Pink
release: '#6366F1', // Indigo
}
Quick Start
Create your first idea in Ideas Mode and organize it using canvas or list view.