import React from 'react' import {StyleSheet, TouchableOpacity, View} from 'react-native' import {Text} from 'view/com/util/text/Text' import {TextLink} from '../util/Link' import {ErrorBoundary} from 'view/com/util/ErrorBoundary' import {s, colors} from 'lib/styles' import {usePalette} from 'lib/hooks/usePalette' import {useStores} from 'state/index' import {CenteredView} from '../util/Views' import {isMobileWeb} from 'platform/detection' export const SplashScreen = ({ onPressSignin, onPressCreateAccount, }: { onPressSignin: () => void onPressCreateAccount: () => void }) => { const pal = usePalette('default') const store = useStores() const onPressWaitlist = React.useCallback(() => { store.shell.openModal({name: 'waitlist'}) }, [store]) return ( Bluesky See what's next Create a new account Sign in Bluesky will launch soon.{' '} Join the waitlist {' '} to try the beta before it's publicly available.