// component/accountPages/assistancePageComponent.tsx import { View, Text, ScrollView, Pressable, Linking, Alert } from 'react-native'; import React from 'react'; import { SafeAreaView } from 'react-native-safe-area-context'; import { router } from 'expo-router'; import { CrossLogoSvg } from '../global/SVG'; import { handleGoWhatsApp } from '../../util/index'; import { useTranslation } from '../../util/hooks/useTranslation'; const AssistancePageComponent = () => { const { t } = useTranslation(); return ( { router.replace('/accountMainPage'); }} > {t('assistance.troubleshooting')} {t('assistance.description')} +852 9138 2139 ); }; export default AssistancePageComponent;