// writer-tool.jsx — AI Writing tool const WriterToolScreen = () => { const [tone, setTone] = React.useState('professional'); const [length, setLength] = React.useState('medium'); const [lang, setLang] = React.useState('English'); const tones = ['professional', 'casual', 'witty', 'persuasive', 'academic', 'friendly']; const docOutline = [ { type: 'h1', text: 'Introducing Aurora — light that learns your day' }, { type: 'p', text: 'Aurora is the first ambient lamp that adjusts color, intensity, and rhythm based on what you\'re doing. We built it for the people who treat their desk like a sanctuary — designers, writers, founders, anyone whose best work happens when the room gets out of the way.' }, { type: 'h2', text: 'Why we built this' }, { type: 'p', text: 'After three years of testing 47 light profiles with creative teams across four cities, one pattern kept showing up: the right light, at the right moment, beats more light every time.' }, { type: 'h2', text: 'How it works' }, { type: 'p', text: 'Aurora pairs with your calendar and your music. Deep work blocks dim the room and warm the temperature. Calls brighten the speaker side. Wind-down hours fade through dusk tones — the kind of light that signals to your nervous system, gently, that the day is closing.' }, { type: 'cursor' }, ]; return (
{/* LEFT: brief */}