diff --git a/app/(auth)/auth/signin/page.tsx b/app/(auth)/auth/signin/page.tsx index 2f8c025..20d2477 100644 --- a/app/(auth)/auth/signin/page.tsx +++ b/app/(auth)/auth/signin/page.tsx @@ -1,5 +1,4 @@ import LoginForm from "@/components/auth/login-form"; -import Image from "next/image"; export default async function LoginPage() { return ; diff --git a/app/(auth)/auth/signup/page.tsx b/app/(auth)/auth/signup/page.tsx index 3aa1f4a..4cdf92a 100644 --- a/app/(auth)/auth/signup/page.tsx +++ b/app/(auth)/auth/signup/page.tsx @@ -1,5 +1,4 @@ import SignUpForm from "@/components/auth/signup-form"; -import Image from "next/image"; import { redirect } from "next/navigation"; export default async function SignupPage({ diff --git a/app/(auth)/auth/verify-otp-registration/page.tsx b/app/(auth)/auth/verify-otp-registration/page.tsx index 6823bf4..49d8b05 100644 --- a/app/(auth)/auth/verify-otp-registration/page.tsx +++ b/app/(auth)/auth/verify-otp-registration/page.tsx @@ -2,7 +2,6 @@ import VerifyRegistrationOTPForm from "@/components/auth/verify-registration-otp import ClientErrorMessage from "@/components/client-error-message"; import { checkTempIdOrPhone } from "@/queries/authentication"; import { tryCatch } from "@/utils/tryCatch"; -import Image from "next/image"; import { redirect } from "next/navigation"; export default async function VerifyRegistrationOTP({ diff --git a/app/(auth)/auth/verify-otp/page.tsx b/app/(auth)/auth/verify-otp/page.tsx index c44c6d5..e24d871 100644 --- a/app/(auth)/auth/verify-otp/page.tsx +++ b/app/(auth)/auth/verify-otp/page.tsx @@ -1,7 +1,5 @@ import VerifyOTPForm from "@/components/auth/verify-otp-form"; -import Image from "next/image"; import { redirect } from "next/navigation"; -import React from "react"; export default async function VerifyOTP({ searchParams,