import { StyleSheet, SafeAreaView, ScrollView } from 'react-native'; import { Text, View } from '@/components/Themed'; import AdhkarCard from '@/components/AdhkarCard'; import SupplicationListItem from '@/components/SupplicationListItem'; import i18n from '@/i18n'; const adhkarCategories = [ 'morningEveningThikr', 'beforeSleepingThikr', 'afterSalamThikr', ]; const supplications = [ 'breakingFastSupplication', 'fastingPersonSupplication', 'insultedWhileFasting', 'seeingFruitSupplication', 'sneezingSupplication', ] export default function ServicesScreen() { return ( {i18n.t('services')} {i18n.t('adhkar')} {adhkarCategories.map((titleKey, index) => ( ))} {i18n.t('hisnAlMuslim')} {supplications.map((textKey, index) => ( {}} /> ))} ); } const styles = StyleSheet.create({ container: { flex: 1, }, innerContainer: { paddingHorizontal: 15, }, title: { fontSize: 22, fontWeight: 'bold', marginVertical: 15, }, sectionTitle: { fontSize: 20, fontWeight: 'bold', color: '#fff', marginVertical: 10, } });