diff --git a/App.tsx b/App.tsx index aba5bed..9c1f1f4 100644 --- a/App.tsx +++ b/App.tsx @@ -1,5 +1,5 @@ import theme from "@/themes/Theme"; -import UserLoginScreen from "@screens/UserLoginScreen"; +import HomePageWithPaymentOptions from "@screens/HomePageWithPaymentOptions"; import { ThemeProvider } from "@shopify/restyle"; import { StatusBar } from "expo-status-bar"; import { StyleSheet } from "react-native"; @@ -11,7 +11,7 @@ export default function App() { {/* */} - + {/* */} diff --git a/src/screens/HomePageWithPaymentOptions.tsx b/src/screens/HomePageWithPaymentOptions.tsx new file mode 100644 index 0000000..906d326 --- /dev/null +++ b/src/screens/HomePageWithPaymentOptions.tsx @@ -0,0 +1,35 @@ +import BalanceContainer from "@components/BalanceContainer"; +import BeasyLogoIcon from "@components/BeasyLogoIcon"; +import NotificationIconButton from "@components/NotificationIconButton"; +import BackgroundGreenWhiteContentArea from "@components/backgrounds/BackgroundGreenWhiteContentArea"; +import Box from "@components/bases/Box"; +import { SafeAreaView } from "react-native-safe-area-context"; + +const HomePageWithPaymentOptions = () => { + return ( + + + + {/* HomePageWithPaymentOptions */} + + + + + + + + + ); +}; + +export default HomePageWithPaymentOptions;