import { FC } from 'react'; import { ImageBackground, View, Text, StatusBar } from 'react-native'; import { SafeAreaView } from 'react-native-safe-area-context'; import type { NavigationProp } from '@react-navigation/native'; import { Button } from '../../components/'; import { ButtonVariants } from '../../types/components'; import { styles } from './style'; import { NAVIGATION_PAGES } from '../../types'; type Props = { navigation: NavigationProp; }; const WelcomeScreen: FC = ({ navigation }) => { return ( Ultimate Hub For Global Explorers ); }; export default WelcomeScreen;