about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorPaul Frazee <pfrazee@gmail.com>2023-03-14 13:12:42 -0500
committerPaul Frazee <pfrazee@gmail.com>2023-03-14 13:12:42 -0500
commitc73d1e80b1ce39c2ae4d4c02ffee5e7c596c0a96 (patch)
tree3ad163d318dc0b4472956d0c1cd82dfaaffd8c9b /src
parent4eb9eb006ca2e6fcf22d0193a68708209a79c50d (diff)
downloadvoidsky-c73d1e80b1ce39c2ae4d4c02ffee5e7c596c0a96.tar.zst
Remove dead code
Diffstat (limited to 'src')
-rw-r--r--src/view/com/auth/Logo.tsx26
1 files changed, 0 insertions, 26 deletions
diff --git a/src/view/com/auth/Logo.tsx b/src/view/com/auth/Logo.tsx
deleted file mode 100644
index ac408cd2f..000000000
--- a/src/view/com/auth/Logo.tsx
+++ /dev/null
@@ -1,26 +0,0 @@
-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,
-  },
-})