import React from 'react'; import { View, ScrollView, Text } from 'react-native'; import Tile from '../../../components/Tile'; import { condensedAccountTiles, accountCards, creditCards, serviceCards, serviceGrid, promotionalCards } from '../../core/combined-auth/data/mockData'; import { summaryStyles } from './styles'; import { useTheme } from 'theme/ThemeProvider'; import { ThemedText } from '@components/ThemedText'; interface SummaryProps { screenWidth: number; } const Summary: React.FC = ({ screenWidth }) => { const { theme } = useTheme(); const styles = summaryStyles(theme); return ( {/* Condensed Account Tiles (like Birthdays, Home Insurance) */} {/* {condensedAccountTiles.map((account, index) => ( ))} */} {/* Detailed Account Tiles */} {accountCards.map((account) => ( ))} {/* Credit Cards */} {/* {creditCards.map((card) => ( ))} */} {/* Service Cards */} Your spaces {serviceCards.map((service) => ( ))} {/* Service Grid */} {/* Promotional Cards */} {promotionalCards.map((promo) => ( ))} ); }; export default Summary;