Core features implemented: - Expo cross-platform setup (iOS, Android, Web) - Bottom tab navigation (Home, Resources, Community, Profile) - Home screen with all major sections: * Hero section with mission statement * Happy Mail integration * Connect/Support section * Podcast information * Features grid * Wings of Remembrance - Resources screen with curated support materials - Community screen with support groups and circles - Profile screen with user account management - Auth layout structure (login, signup, forgot password) Ready for: - Authentication integration with FastAPI backend - API integration for community features - Database connectivity - Testing on iOS, Android, and Web
17 lines
367 B
TypeScript
17 lines
367 B
TypeScript
import { Stack } from 'expo-router';
|
|
|
|
export default function AuthLayout() {
|
|
return (
|
|
<Stack
|
|
screenOptions={{
|
|
headerShown: false,
|
|
gestureEnabled: false,
|
|
animationEnabled: true,
|
|
}}
|
|
>
|
|
<Stack.Screen name="login" />
|
|
<Stack.Screen name="signup" />
|
|
<Stack.Screen name="forgot-password" />
|
|
</Stack>
|
|
);
|
|
}
|