import Logo from './Logo' const STARTERS = [ { title: 'Todo list with local storage', prompt: 'Build a todo list with add, complete, and delete actions, persisted to localStorage.' }, { title: 'Pomodoro timer with sound', prompt: 'Build a Pomodoro timer (25 min work / 5 min break) with start, pause, reset, and a soft chime when the interval ends.' }, { title: 'Markdown editor with preview', prompt: 'Build a side-by-side markdown editor: textarea on the left, live rendered preview on the right.' }, { title: 'Landing page for a coffee shop', prompt: 'Build a single-page landing page for a coffee shop: hero with tagline, three featured drinks as cards, and a footer.' }, ] export default function EmptyState({ onPick }) { return (
Describe what you want. See it render live.