feat(mobile): settings hub with security section + signout

This commit is contained in:
byGalax
2026-05-16 17:21:57 +02:00
parent 74a0ef6c32
commit ccac822cb9
2 changed files with 62 additions and 0 deletions
@@ -0,0 +1,18 @@
import { Stack } from 'expo-router';
import { colors } from '../../../theme/colors';
export default function SettingsLayout() {
return (
<Stack
screenOptions={{
headerStyle: { backgroundColor: colors.bg },
headerTitleStyle: { color: colors.text },
headerTintColor: colors.accent,
}}
>
<Stack.Screen name="index" options={{ title: 'Einstellungen' }} />
<Stack.Screen name="security" options={{ title: 'Sicherheit' }} />
</Stack>
);
}