import React from 'react' import { Link, Stack } from 'expo-router' import { StyleSheet } from 'react-native' import { ThemedText, ThemedView } from '@/components' import { getString } from '@/locale/I18nConfig' import { metrics } from '@/themes' export const ForgotPasswordScreen: React.FC = () => ( <> {getString('auth.forgotPassword')} {getString('goToHome')} ) const styles = StyleSheet.create({ container: { flex: 1, alignItems: 'center', justifyContent: 'center', padding: metrics.medium, }, link: { marginTop: metrics.small, paddingVertical: metrics.small, }, })