diff --git a/app/(auth)/sign-up.tsx b/app/(auth)/sign-up.tsx
index 96aef16..e37cf56 100644
--- a/app/(auth)/sign-up.tsx
+++ b/app/(auth)/sign-up.tsx
@@ -1,10 +1,11 @@
+import { Link } from "expo-router";
import { useState } from "react";
import { Image, ScrollView, Text, View } from "react-native";
-import { InputField } from "@/components/input-field";
-import { icons, images } from "@/constants";
import { CustomButton } from "@/components/custom-button";
-import { Link } from "expo-router";
+import { InputField } from "@/components/input-field";
+import { OAuth } from "@/components/oauth";
+import { icons, images } from "@/constants";
const SignUp = () => {
const [form, setForm] = useState({
@@ -78,7 +79,7 @@ const SignUp = () => {
className="mt-6"
/>
- {/* OAuth */}
+
{
+ const handleGoogleSignIn = () => {};
+
+ return (
+
+
+
+
+ Or
+
+
+
+
+ (
+
+ )}
+ bgVariant="outline"
+ textVariant="primary"
+ onPress={handleGoogleSignIn}
+ />
+
+ );
+};