about summary refs log tree commit diff
path: root/src/view/shell/NavSignupCard.tsx
diff options
context:
space:
mode:
authorEric Bailey <git@esb.lol>2023-12-14 17:46:27 -0600
committerGitHub <noreply@github.com>2023-12-14 15:46:27 -0800
commit1111108efee528d94a0ec5a6cb714aa09f6237db (patch)
treec15dbcf2f05c66c154216483ba0c5da69b806fdc /src/view/shell/NavSignupCard.tsx
parent7897dd24a14e65d8ab1aa0e474a09e0628da31b7 (diff)
downloadvoidsky-1111108efee528d94a0ec5a6cb714aa09f6237db.tar.zst
Some brand, some pwi (#2212)
* Add logo to left nav in logged out

* Protect last routes

* Hide links in left nav, hide nav

* Replace bottom bar for pwi

* Remove same links from drawer

* Hide reply prompt

* Allow search
Diffstat (limited to 'src/view/shell/NavSignupCard.tsx')
-rw-r--r--src/view/shell/NavSignupCard.tsx8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/view/shell/NavSignupCard.tsx b/src/view/shell/NavSignupCard.tsx
index 8c0e2075d..bae37e838 100644
--- a/src/view/shell/NavSignupCard.tsx
+++ b/src/view/shell/NavSignupCard.tsx
@@ -5,11 +5,11 @@ import {useLingui} from '@lingui/react'
 
 import {s} from 'lib/styles'
 import {usePalette} from 'lib/hooks/usePalette'
-import {DefaultAvatar} from '#/view/com/util/UserAvatar'
 import {Text} from '#/view/com/util/text/Text'
 import {Button} from '#/view/com/util/forms/Button'
 import {useLoggedOutViewControls} from '#/state/shell/logged-out'
 import {useCloseAllActiveElements} from '#/state/util'
+import {Logo} from '#/view/icons/Logo'
 
 let NavSignupCard = ({}: {}): React.ReactNode => {
   const {_} = useLingui()
@@ -35,10 +35,10 @@ let NavSignupCard = ({}: {}): React.ReactNode => {
         paddingTop: 6,
         marginBottom: 24,
       }}>
-      <DefaultAvatar type="user" size={48} />
+      <Logo width={48} />
 
-      <View style={{paddingTop: 12}}>
-        <Text type="md" style={[pal.text, s.bold]}>
+      <View style={{paddingTop: 18}}>
+        <Text type="md-bold" style={[pal.text]}>
           <Trans>Sign up or sign in to join the conversation</Trans>
         </Text>
       </View>