/ src / components / AsciiLogo.tsx
AsciiLogo.tsx
 1  import { Box, Text } from 'ink'
 2  import React from 'react'
 3  import { getTheme } from '../utils/theme.js'
 4  
 5  export function AsciiLogo(): React.ReactNode {
 6    const theme = getTheme()
 7    return (
 8      <Box flexDirection="column" alignItems="flex-start">
 9        <Text color={theme.claude}>
10          {` ██████╗██╗      █████╗ ██╗   ██╗██████╗ ███████╗
11  ██╔════╝██║     ██╔══██╗██║   ██║██╔══██╗██╔════╝
12  ██║     ██║     ███████║██║   ██║██║  ██║█████╗  
13  ██║     ██║     ██╔══██║██║   ██║██║  ██║██╔══╝  
14  ╚██████╗███████╗██║  ██║╚██████╔╝██████╔╝███████╗
15   ╚═════╝╚══════╝╚═╝  ╚═╝ ╚═════╝ ╚═════╝ ╚══════╝
16   ██████╗ ██████╗ ██████╗ ███████╗                
17  ██╔════╝██╔═══██╗██╔══██╗██╔════╝                
18  ██║     ██║   ██║██║  ██║█████╗                  
19  ██║     ██║   ██║██║  ██║██╔══╝                  
20  ╚██████╗╚██████╔╝██████╔╝███████╗                
21   ╚═════╝ ╚═════╝ ╚═════╝ ╚══════╝`}
22        </Text>
23      </Box>
24    )
25  }