about summary refs log tree commit diff
path: root/src/view/com/auth/Logo.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/view/com/auth/Logo.tsx')
-rw-r--r--src/view/com/auth/Logo.tsx26
1 files changed, 26 insertions, 0 deletions
diff --git a/src/view/com/auth/Logo.tsx b/src/view/com/auth/Logo.tsx
new file mode 100644
index 000000000..ac408cd2f
--- /dev/null
+++ b/src/view/com/auth/Logo.tsx
@@ -0,0 +1,26 @@
+import React from 'react'
+import {StyleSheet, View} from 'react-native'
+import {s, colors} from 'lib/styles'
+import {Text} from '../util/text/Text'
+
+export const LogoTextHero = () => {
+  return (
+    <View style={[styles.textHero]}>
+      <Text type="title-lg" style={[s.white, s.bold]}>
+        Bluesky
+      </Text>
+    </View>
+  )
+}
+
+const styles = StyleSheet.create({
+  textHero: {
+    flexDirection: 'row',
+    alignItems: 'center',
+    justifyContent: 'center',
+    paddingRight: 20,
+    paddingVertical: 15,
+    marginBottom: 20,
+    backgroundColor: colors.blue3,
+  },
+})