diff --git a/app/(root)/(tabs)/profile.tsx b/app/(root)/(tabs)/profile.tsx index 4d44dfd..e6f14f4 100644 --- a/app/(root)/(tabs)/profile.tsx +++ b/app/(root)/(tabs)/profile.tsx @@ -1,10 +1,60 @@ -import { Text } from "react-native"; +import { useUser } from "@clerk/clerk-expo"; +import { Image, ScrollView, Text, View } from "react-native"; import { SafeAreaView } from "react-native-safe-area-context"; +import { InputField } from "@/components/input-field"; + const Profile = () => { + const { user } = useUser(); + return ( - - Profile + + + My profile + + + + + + + + + + + + + + + ); };