80 lines
2.1 KiB
TypeScript
80 lines
2.1 KiB
TypeScript
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'
|
|
|
|
export const SplashScreen = ({
|
|
onPressSignin,
|
|
onPressCreateAccount,
|
|
}: {
|
|
onPressSignin: () => void
|
|
onPressCreateAccount: () => void
|
|
}) => {
|
|
const pal = usePalette('default')
|
|
return (
|
|
<CenteredView style={[styles.container, pal.view]}>
|
|
<SafeAreaView testID="noSessionView" style={styles.container}>
|
|
<ErrorBoundary>
|
|
<View style={styles.hero}>
|
|
<Text style={[styles.title, pal.link]}>Bluesky</Text>
|
|
<Text style={[styles.subtitle, pal.textLight]}>
|
|
See what's next
|
|
</Text>
|
|
</View>
|
|
<View testID="signinOrCreateAccount" style={styles.btns}>
|
|
<TouchableOpacity
|
|
testID="createAccountButton"
|
|
style={[styles.btn, {backgroundColor: colors.blue3}]}
|
|
onPress={onPressCreateAccount}>
|
|
<Text style={[s.white, styles.btnLabel]}>
|
|
Create a new account
|
|
</Text>
|
|
</TouchableOpacity>
|
|
<TouchableOpacity
|
|
testID="signInButton"
|
|
style={[styles.btn, pal.btn]}
|
|
onPress={onPressSignin}>
|
|
<Text style={[pal.text, styles.btnLabel]}>Sign in</Text>
|
|
</TouchableOpacity>
|
|
</View>
|
|
</ErrorBoundary>
|
|
</SafeAreaView>
|
|
</CenteredView>
|
|
)
|
|
}
|
|
|
|
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,
|
|
},
|
|
})
|