@miphamai/cli 0.5.4 → 0.5.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/ui/app.tsx +8 -0
package/package.json
CHANGED
package/src/ui/app.tsx
CHANGED
|
@@ -367,6 +367,14 @@ export function App({
|
|
|
367
367
|
</Box>
|
|
368
368
|
)}
|
|
369
369
|
|
|
370
|
+
{/* Brand mark — centered header above chat */}
|
|
371
|
+
<Box flexDirection="row" justifyContent="center" marginTop={1}>
|
|
372
|
+
<Text dimColor>╺━</Text>
|
|
373
|
+
<Text color="#FFD700" bold> Mipham Code </Text>
|
|
374
|
+
<Text dimColor>v{VERSION}</Text>
|
|
375
|
+
<Text dimColor> ━╸</Text>
|
|
376
|
+
</Box>
|
|
377
|
+
|
|
370
378
|
{/* Chat panel */}
|
|
371
379
|
<ChatPanel messages={messages} focusMode={focusMode} />
|
|
372
380
|
|