import { StyleSheet, SafeAreaView, ScrollView } from 'react-native'; import { Text, View } from '@/components/Themed'; import FeatureCard from '@/components/FeatureCard'; import PrayerTimeCard from '@/components/PrayerTimeCard'; import ServicesGrid from '@/components/ServicesGrid'; export default function HomeScreen() { return ( Home ); } const styles = StyleSheet.create({ container: { flex: 1, }, innerContainer: { paddingHorizontal: 15, }, title: { fontSize: 22, fontWeight: 'bold', marginVertical: 15, }, cardRow: { flexDirection: 'row', justifyContent: 'space-between', }, });