import { Image, ScrollView, Text, View } from "react-native"; import { SafeAreaView } from "react-native-safe-area-context"; import { InputField } from "@/components/input-field"; import { icons } from "@/constants"; import { useT } from "@/lib/i18n"; import { useSession } from "@/lib/session"; const Profile = () => { const { user } = useSession(); const t = useT(); return ( {t("profile.title")} {t("profile.avatarAlt")} ); }; export default Profile;