···55import {ErrorBoundary} from 'view/com/util/ErrorBoundary'
66import {s, colors} from 'lib/styles'
77import {usePalette} from 'lib/hooks/usePalette'
88-import {useStores} from 'state/index'
98import {CenteredView} from '../util/Views'
109import {isMobileWeb} from 'platform/detection'
1110···1716 onPressCreateAccount: () => void
1817}) => {
1918 const pal = usePalette('default')
2020- const store = useStores()
2121-2222- const onPressWaitlist = React.useCallback(() => {
2323- store.shell.openModal({name: 'waitlist'})
2424- }, [store])
25192620 return (
2721 <CenteredView style={[styles.container, pal.view]}>
···5953 <Text style={[pal.text, styles.btnLabel]}>Sign In</Text>
6054 </TouchableOpacity>
6155 </View>
6262- <Text
6363- type="xl"
6464- style={[styles.notice, pal.textLight]}
6565- lineHeight={1.3}>
6666- Bluesky will launch soon.{' '}
6767- <TouchableOpacity
6868- onPress={onPressWaitlist}
6969- // TODO: web accessibility
7070- accessibilityRole="button">
7171- <Text type="xl" style={pal.link}>
7272- Join the waitlist
7373- </Text>
7474- </TouchableOpacity>{' '}
7575- to try the beta before it's publicly available.
7676- </Text>
7756 </ErrorBoundary>
7857 </View>
7958 <Footer />
+2-3
src/view/com/auth/create/Step2.tsx
···5151 accessibilityRole="button"
5252 accessibilityLabel="Waitlist"
5353 accessibilityHint="Opens Bluesky waitlist form">
5454- <Text style={pal.link}>Join the waitlist</Text>
5555- </TouchableWithoutFeedback>{' '}
5656- to try the beta before it's publicly available.
5454+ <Text style={pal.link}>Join the waitlist.</Text>
5555+ </TouchableWithoutFeedback>
5756 </Text>
5857 ) : (
5958 <>
+4-4
src/view/com/modals/Waitlist.tsx
···5858 }
59596060 return (
6161- <View
6262- style={[styles.container, {backgroundColor: pal.colors.backgroundLight}]}>
6161+ <View style={[styles.container, pal.view]}>
6362 <View style={[styles.innerContainer, pal.view]}>
6463 <Text type="title-xl" style={[styles.title, pal.text]}>
6564 Join the waitlist
6665 </Text>
6766 <Text type="lg" style={[styles.description, pal.text]}>
6868- Bluesky will launch soon. Join the waitlist to try the beta before
6969- it's publicly available.
6767+ Bluesky uses invites to build a healthier community. If you don't know
6868+ anybody with an invite, you can sign up for the waitlist and we'll
6969+ send one soon.
7070 </Text>
7171 <TextInput
7272 style={[styles.textInput, pal.borderDark, pal.text, s.mb10, s.mt10]}
+1-6
src/view/shell/desktop/RightNav.tsx
···2727 SANDBOX. Posts and accounts are not permanent.
2828 </Text>
2929 </View>
3030- ) : (
3131- <Text type="md" style={[pal.textLight, styles.messageLine]}>
3232- Welcome to Bluesky! This is a beta application that's still in
3333- development.
3434- </Text>
3535- )}
3030+ ) : undefined}
3631 <View style={[s.flexRow]}>
3732 <TextLink
3833 type="md"