diff --git a/components/terminal-window.tsx b/components/terminal-window.tsx index dfb18ce..f24f81b 100644 --- a/components/terminal-window.tsx +++ b/components/terminal-window.tsx @@ -145,78 +145,78 @@ export function TerminalWindow({ return (
{/* macOS-style title bar */} -
+
- + gbanyan@blog — zsh
{/* Terminal content */}
-
- ~ +
+ ~ $ {displayedPrompt} {phase === 'prompt' && showCursor && ( - + )}
{displayedLine1 && ( -
+
{displayedLine1} {phase === 'typing-line1' && showCursor && ( - + )}
)} {displayedLine2 && ( -
+
{displayedLine2} {phase === 'typing-line2' && showCursor && ( - + )}
)} {(phase === 'prompt2' || phase === 'typing-ascii' || displayedPrompt2 || displayedAscii.length > 0) && ( -
- ~ +
+ ~ $ {displayedPrompt2} {phase === 'prompt2' && showCursor && ( - + )}
)} {displayedAscii.length > 0 && ( -
+
{displayedAscii.map((line, i) => (
{line}
))} {phase === 'typing-ascii' && showCursor && ( - + )}
)} {phase === 'done' && ( -
- ~ +
+ ~ $ - +
)}