Browse Source

Add app roadmap and strategy pages; link from Tweaks

- public/roadmap.html — карта развития приложения по фазам (0/1/1.5/2)
- public/strategy.html — полный текст концепции развития (встреча 23 апр 2026)
- Tweaks panel: секция «Документы» со ссылкой на карту развития
- Roadmap: кнопка «Концепция развития» ведёт на strategy.html

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
main
AR 15 M4 2 weeks ago
parent
commit
25552690c6
  1. 1479
      public/roadmap.html
  2. 1259
      public/strategy.html
  3. 10
      src/App.jsx

1479
public/roadmap.html

File diff suppressed because it is too large Load Diff

1259
public/strategy.html

File diff suppressed because it is too large Load Diff

10
src/App.jsx

@ -188,6 +188,16 @@ function TweaksPanel({ tw, setTw, onClose }) {
)) ))
)} )}
{group('Шрифт', opts(FONT_OPTIONS, 'font'))} {group('Шрифт', opts(FONT_OPTIONS, 'font'))}
<div className="tweaks-section">
<div className="label">Документы</div>
<a href="/roadmap.html" target="_blank" rel="noopener noreferrer" style={{
display: 'block', padding: '7px 10px', borderRadius: 8,
background: 'var(--c-primary-100)', color: 'var(--c-primary-darker)',
fontSize: 12, fontWeight: 700, textDecoration: 'none', textAlign: 'center',
}}>
Карта развития приложения
</a>
</div>
</div> </div>
); );
} }

Loading…
Cancel
Save