import { StyleSheet, Text, View } from 'react-native' import React from 'react' import { createNativeStackNavigator } from '@react-navigation/native-stack'; import UnsignedPage from '../screens/Auth/UnsignedPage'; import LandingPage from '../screens/Auth/LandingPage'; import SignInPage from '../screens/Auth/SignInPage'; import SignUpPage from '../screens/Auth/SignUpPage'; import ChooseTopicPage from '../screens/Auth/ChooseTopicPage'; import FillProfile from '../screens/Profile/FillProfile'; import ForgotPasswordPage from '../screens/Auth/ForgotPasswordPage'; import OTPPage from '../screens/Auth/OTPPage'; import NewsListPage from '../screens/News/NewsListPage'; import NewsDetailPage from '../screens/News/NewsDetailPage'; const Stack = createNativeStackNavigator() const defaultScreenOptions = { headerShown: false } const LandingPageNavigator = () => { return ( ) } export default LandingPageNavigator