Show on mobile Update

This commit is contained in:
2025-12-03 18:58:24 +00:00
parent 84469e3753
commit 4202a22403
5 changed files with 18 additions and 0 deletions
+10
View File
@@ -39,4 +39,14 @@ export const lines: TerminalLine[] = [
{ type: 'output', content: '(&muted)•(&) (&orange)Skip typing animation(&) (&text, bold)(Y)(&)' , inline: true },
{ type: 'output', content: '(&muted)•(&) (&orange)Navigate to page(&) (&text, bold)(Ctrl/Cmd+ [#])(&)' , inline: true },
{ type: 'blank', content: '' },
// list the themes
{ type: 'output', content: '(&accent)Themes:(&)', inline: true },
...themeOptions.map((theme, i) => (
{
type: 'output' as const,
content: `(&primary)${theme.label}(&) (&text, bold)[${i+1}](&)`,
inline: true
}
)),
{ type: 'blank', content: '' },
];