import { Card, Text, View } from "react-native-ui-lib"; import { StyleSheet } from "react-native"; import RemindersList from "@/components/pages/reminders/remindersList"; import { RemindersProvider } from "@/contexts/RemindersContext"; export default function Screen() { return ( Good Morning, Hello Ryanae! 😇 ); } const styles = StyleSheet.create({ banner: { backgroundColor: "#f68d51", height: "27%", }, greetingContainer: { marginLeft: "8%", paddingTop: 15, paddingBottom: 20, flex: 1, flexDirection: "column", justifyContent: "space-between", }, footerContainer: { height: 70, backgroundColor: "#f9b076", marginTop: "auto", borderTopLeftRadius: 30, marginLeft: "8%", paddingLeft: "5%", }, });