diff --git a/app/(root)/(tabs)/chat.tsx b/app/(root)/(tabs)/chat.tsx
index 10ababa..d1e5376 100644
--- a/app/(root)/(tabs)/chat.tsx
+++ b/app/(root)/(tabs)/chat.tsx
@@ -1,14 +1,30 @@
-import { View, Text } from "react-native"
-import { SafeAreaView } from "react-native-safe-area-context"
+import { Image, ScrollView, Text, View } from "react-native";
+import { SafeAreaView } from "react-native-safe-area-context";
+
+import { images } from "@/constants";
const Chat = () => {
- return(
-
-
- Chat
-
-
- )
-}
+ return (
+
+
+ Chat
+
+
+
+ No Messages Yet
+
+
+ Start a conversation with your friends and family
+
+
+
+
+ );
+};
export default Chat;
\ No newline at end of file
diff --git a/app/(root)/(tabs)/profile.tsx b/app/(root)/(tabs)/profile.tsx
index 75fa200..fa30605 100644
--- a/app/(root)/(tabs)/profile.tsx
+++ b/app/(root)/(tabs)/profile.tsx
@@ -1,14 +1,70 @@
-import { View, Text } from "react-native"
-import { SafeAreaView } from "react-native-safe-area-context"
+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/InputField";
const Profile = () => {
- return(
-
-
- Profile
-
-
- )
-}
+ const { user } = useUser();
+
+ return (
+
+
+ My profile
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ );
+};
export default Profile;
\ No newline at end of file