import { Tabs } from 'expo-router'; import { Home, Calendar, User } from 'lucide-react-native'; import { COLORS } from '../../../constants/theme'; import { useLanguage } from '../../../stores/LanguageContext'; import { useBarbearia } from '../../../stores/BarbeariaContext'; export default function TabLayout() { const { t } = useLanguage(); const { barbearia } = useBarbearia(); const colors = barbearia?.colors || COLORS; return ( , }} /> , }} /> ); }