import React from 'react'; import { View, Text, StyleSheet } from 'react-native'; import { AppColors } from '@/constants/theme'; interface SectionCardProps { title: string; children: React.ReactNode; } export function SectionCard({ title, children }: SectionCardProps) { return ( {title} {children} ); } const styles = StyleSheet.create({ container: { marginBottom: 20, }, title: { fontSize: 12, color: AppColors.slatePurple, textTransform: 'uppercase', letterSpacing: 0.5, paddingHorizontal: 4, marginBottom: 10, }, card: { backgroundColor: AppColors.white, borderRadius: 16, overflow: 'hidden', shadowColor: AppColors.deepPurple, shadowOffset: { width: 0, height: 2 }, shadowOpacity: 0.04, shadowRadius: 8, elevation: 1, }, });