diff --git a/src/app/(auth-routes)/login/page.tsx b/src/app/(auth-routes)/login/page.tsx
index 6a8bebf22..cd79f013a 100644
--- a/src/app/(auth-routes)/login/page.tsx
+++ b/src/app/(auth-routes)/login/page.tsx
@@ -110,7 +110,6 @@ const LoginPage = () => {
/>
Sign in with Google
-
diff --git a/src/app/(auth-routes)/register/page.tsx b/src/app/(auth-routes)/register/page.tsx
index 8d459c7fd..e5845f651 100644
--- a/src/app/(auth-routes)/register/page.tsx
+++ b/src/app/(auth-routes)/register/page.tsx
@@ -2,13 +2,14 @@
import { zodResolver } from "@hookform/resolvers/zod";
import { DialogContent, DialogTitle } from "@radix-ui/react-dialog";
+import Image from "next/image";
import Link from "next/link";
-import { useEffect, useState } from "react";
+import { useState } from "react";
import { useForm } from "react-hook-form";
import { z } from "zod";
-import CustomButton from "~/components/common/common-button/common-button";
import { DialogDemo } from "~/components/common/Dialog";
+import { Button } from "~/components/ui/button";
import {
Form,
FormControl,
@@ -23,8 +24,6 @@ import {
InputOTPGroup,
InputOTPSlot,
} from "~/components/ui/input-otp";
-import { useToast } from "~/components/ui/use-toast";
-import { getApiUrl } from "../../../utils/getApiUrl";
const formSchema = z.object({
fullname: z.string().min(2, {
@@ -41,26 +40,6 @@ const formSchema = z.object({
type FormData = z.infer