diff --git a/mobile/app/_layout.tsx b/mobile/app/_layout.tsx new file mode 100644 index 0000000..c5fb4ec --- /dev/null +++ b/mobile/app/_layout.tsx @@ -0,0 +1,30 @@ +import { Stack } from 'expo-router'; +import { ThemeProvider } from '../features/theme/ThemeProvider'; +import { AuthProvider } from '../features/auth/context/AuthContext'; + +export default function RootLayout() { + return ( + + + + {/* Auth Screens */} + + + {/* Main App */} + + + {/* Modals */} + + + + + ); +} \ No newline at end of file