WellNuo/app/(auth)/_layout.tsx
Sergei c80fd4ab4b Add Stripe checkout, OTP auth improvements, navigation updates
- Add purchase screen with real Stripe Checkout integration
- Add kit activation screen with dev mode notice
- Remove mock OTP mode - only serter2069@gmail.com bypasses OTP
- Fix OTP retry - show error without redirecting to email screen
- Update tab navigation: Dashboard, Chat, Profile (hide Voice)
- Update Brevo sender email to daterabbit.com domain

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-12-24 13:44:10 -08:00

20 lines
499 B
TypeScript

import { Stack } from 'expo-router';
import { AppColors } from '@/constants/theme';
export default function AuthLayout() {
return (
<Stack
screenOptions={{
headerShown: false,
contentStyle: { backgroundColor: AppColors.background },
}}
>
<Stack.Screen name="login" />
<Stack.Screen name="verify-otp" />
<Stack.Screen name="purchase" />
<Stack.Screen name="activate" />
<Stack.Screen name="complete-profile" />
</Stack>
);
}