This commit is contained in:
2026-05-22 14:42:13 +08:00
parent 01ad11010f
commit 9c6d972139

View File

@@ -79,11 +79,21 @@ function renderScreen(screen, nav) {
}
}
const LOGO = String.raw` ____ ____ _ _
| _ \ ___ ___ _ __ | _ \ ___ | (_) ___ _ _
| | | |/ _ \/ _ \ '_ \| |_) / _ \| | |/ __| | | |
| |_| | __/ __/ |_) | __/ (_) | | | (__| |_| |
|____/ \___|\___| .__/|_| \___/|_|_|\___|\__, |
|_| |___/`;
function Header() {
return (
<Box borderStyle="round" borderColor="cyan" paddingX={1}>
<Text color="cyan" bold>server-config</Text>
<Text dimColor> zsh · ssh · frp client</Text>
<Box flexDirection="column" borderStyle="round" borderColor="cyan" paddingX={1}>
<Text color="cyan" bold>{LOGO}</Text>
<Box marginTop={1}>
<Text color="cyan" bold>server-config</Text>
<Text dimColor> zsh · ssh · frp client</Text>
</Box>
</Box>
);
}