import React from 'react' import {SafeAreaView, StyleSheet, TouchableOpacity, View} from 'react-native' import {Text} from 'view/com/util/text/Text' import {ErrorBoundary} from 'view/com/util/ErrorBoundary' import {s, colors} from 'lib/styles' import {usePalette} from 'lib/hooks/usePalette' import {CenteredView} from '../util/Views' import {Trans, msg} from '@lingui/macro' import {useLingui} from '@lingui/react' export const SplashScreen = ({ onPressSignin, onPressCreateAccount, }: { onPressSignin: () => void onPressCreateAccount: () => void }) => { const pal = usePalette('default') const {_} = useLingui() return ( Bluesky See what's next Create a new account Sign In ) } const styles = StyleSheet.create({ container: { height: '100%', }, hero: { flex: 2, justifyContent: 'center', }, btns: { paddingBottom: 40, }, title: { textAlign: 'center', fontSize: 68, fontWeight: 'bold', }, subtitle: { textAlign: 'center', fontSize: 42, fontWeight: 'bold', }, btn: { borderRadius: 32, paddingVertical: 16, marginBottom: 20, marginHorizontal: 20, }, btnLabel: { textAlign: 'center', fontSize: 21, }, })