import { BlurView } from "expo-blur"; import React from "react"; import { Pressable, Text } from "react-native"; import { Routes } from "../navigation"; import { navigate } from "../navigation/NavigationService"; import { Palette } from "../styles"; import { FONT_FAMILY } from "../styles/Fonts"; export default function ConnectBtn({ style }) { const handlePress = () => { navigate(Routes.Login); }; return ( {"Se connecter"} ); }