Skip to content

Commit 454b198

Browse files
refactor: move main title to a separate file
1 parent df83892 commit 454b198

1 file changed

Lines changed: 15 additions & 0 deletions

File tree

source/import/MainTitle.tsx

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
import BigText from 'ink-big-text'
2+
import Gradient from 'ink-gradient'
3+
import React, { type FC } from 'react'
4+
5+
const MainTitle: FC = () => (
6+
<Gradient colors={['#ff438c', '#bb1d79', '#8b46a4', '#6a2581']}>
7+
<BigText
8+
lineHeight={1}
9+
font={'chrome'}
10+
text="dAppBooster"
11+
/>
12+
</Gradient>
13+
)
14+
15+
export default MainTitle

0 commit comments

Comments
 (0)