import { StyleSheet, Text, View, TouchableOpacity } from "react-native"; import { SafeAreaView } from "react-native-safe-area-context"; import { BirthdayList } from "@/components/birthdate-list"; import { useRouter } from "expo-router"; export default function HomeScreen() { const router = useRouter(); return ( Upcoming Birthdays router.push("/add")} style={styles.addButton} > + ); } const styles = StyleSheet.create({ screen: { flex: 1, backgroundColor: "#fff", }, content: { flex: 1, paddingHorizontal: 16, paddingTop: 12, }, title: { fontSize: 24, fontWeight: "bold", paddingHorizontal: 5, paddingBottom: 10, }, addButton: { width: 40, height: 40, borderRadius: 20, backgroundColor: "#007AFF", justifyContent: "center", alignItems: "center", }, addButtonText: { fontSize: 24, color: "white", fontWeight: "bold", }, actionsContainer: { flexDirection: "row", justifyContent: "space-between", gap: 12, paddingHorizontal: 5, paddingBottom: 10, }, });