diff --git a/src/components/General/TitleLogo.tsx b/src/components/General/TitleLogo.tsx new file mode 100644 index 00000000..b694bc90 --- /dev/null +++ b/src/components/General/TitleLogo.tsx @@ -0,0 +1,32 @@ +import { Avatar, Text } from '@status-im/components' +import { Stack, XStack, YStack } from 'tamagui' + +type TitleLogoProps = { + subtitle?: string +} + +const TitleLogo = ({ subtitle }: TitleLogoProps) => { + return ( + + + + } + /> + + + + Nimbus + + + {subtitle} + + + + ) +} + +export default TitleLogo