import { Tabs } from 'expo-router'; import React from 'react'; import { Feather } from '@expo/vector-icons'; import { HapticTab } from '@/components/haptic-tab'; import { AppColors } from '@/constants/theme'; import { useColorScheme } from '@/hooks/use-color-scheme'; export default function TabLayout() { const colorScheme = useColorScheme(); const isDark = colorScheme === 'dark'; return ( ( ), }} /> {/* Hide old dashboard - now index shows WebView dashboard */} ( ), }} /> ( ), }} /> ( ), }} /> {/* Hide explore tab */} {/* Beneficiaries - hidden from tab bar but keeps tab bar visible */} ); }