feat: add content to NimbusLogo

This commit is contained in:
RadoslavDimchev 2023-08-10 09:54:37 +03:00
parent 0b5949a3db
commit f61f2f2e2d

View File

@ -1,13 +1,20 @@
import { XStack } from 'tamagui'
import { Text, XStack } from 'tamagui'
import Icon from './Icon'
import Tag from './Tag'
const NodesLogo = () => {
return (
<XStack
style={{
alignItems: 'center',
justifyContent: 'center',
}}
space={'$2'}
></XStack>
>
<Icon source={'src/assets/nodes-app-icon.png'} width={32} height={32} />
<Text style={{ fontWeight: '700', fontSize: '28px' }}>nodes</Text>
<Tag bc="#2A4AF5" text="BETA" />
</XStack>
)
}