import React from 'react'; import { View, Text, Image, StyleSheet, TouchableOpacity } from 'react-native'; import { router } from 'expo-router'; import COLORS from '@/constants/colors'; import { StatusBar } from 'expo-status-bar'; const OpeningScreen = () => { return ( Bienvenue chez Brix Café Depuis 2024, Brix Café vous fait vivre une expérience café unique, inspirée du savoir-faire italien et portée par une passion authentique. Des grains d’exception, une qualité incomparable. router.push('/screens/auth/SignIn-Screen')}> Se connecter router.push('/screens/auth/SignUpScreen')}> Créer un compte ); }; // Styles const styles = StyleSheet.create({ container: { flex: 1, backgroundColor: '#000000', alignItems: 'center', justifyContent: 'center', paddingHorizontal: 20, }, logo: { width: 120, height: 120, marginBottom: 20, }, welcomeText: { fontSize: 26, fontWeight: 'bold', color: COLORS.text, marginBottom: 20, }, coffeeImage: { width: '120%', height: 150, marginTop:40, marginBottom: 30, }, descriptionText: { fontSize: 14, color: COLORS.text, textAlign: 'center', marginBottom: 40, }, signInButton: { backgroundColor: COLORS.primary, paddingVertical: 15, paddingHorizontal: 40, borderRadius: 10, marginBottom: 20, width: '80%', alignItems: 'center', }, signUpButton: { borderWidth: 1, borderColor: COLORS.primary, paddingVertical: 15, paddingHorizontal: 40, borderRadius: 10, width: '80%', alignItems: 'center', }, buttonText: { fontSize: 16, color: COLORS.text, fontWeight: 'bold', }, }); export default OpeningScreen;