-
+
+
-
-
- Not a member yet?{" "}
-
- Sign up
-
-
+
+
+ Not a member yet?{" "}
+
+ Sign up
+
diff --git a/app/(auth)/sign-up/page.jsx b/app/(auth)/sign-up/page.jsx
index 5eba13b..e20c6bb 100644
--- a/app/(auth)/sign-up/page.jsx
+++ b/app/(auth)/sign-up/page.jsx
@@ -25,10 +25,11 @@ import {
} from "../../../@/components/ui/card";
import { useToast } from "../../../@/components/ui/use-toast";
-import axios from "axios"
+import axios from "axios";
import { Loader2 } from "lucide-react";
import { useRouter } from "next/navigation";
import { signUpSchema } from "../../../model/Schema/signUpSchema";
+import Image from "next/image";
const Page = () => {
const [username, setUsername] = useState("");
@@ -103,101 +104,130 @@ const Page = () => {
return (
-
-
-
-
-
- Welcome to Sanity
-
-
- Sign up to start your gaming adventure
-
-
-
+
+
+
+
);
};
diff --git a/app/(auth)/verify/[username]/page.jsx b/app/(auth)/verify/[username]/page.jsx
index c1ceb2c..e6cf711 100644
--- a/app/(auth)/verify/[username]/page.jsx
+++ b/app/(auth)/verify/[username]/page.jsx
@@ -25,6 +25,7 @@ import {
CardHeader,
CardTitle,
} from "../../../../@/components/ui/card";
+import Image from "next/image";
const VerifyAccount = () => {
const router = useRouter();
@@ -61,42 +62,57 @@ const VerifyAccount = () => {
return (
-
-
-
-
-
- Verify your account
-
-
- Enter your verification code
-
-
-
-
-
-
-
+
+
+
+
+
+
+ Verify your account.
+
+
+
+
+
+
+
);
};
diff --git a/public/assets/grad1.svg b/public/assets/grad1.svg
new file mode 100644
index 0000000..bac9444
--- /dev/null
+++ b/public/assets/grad1.svg
@@ -0,0 +1,71 @@
+
diff --git a/tsconfig.json b/tsconfig.json
index 7301805..954d174 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -17,9 +17,7 @@
"name": "next"
}
],
- "types": [
- "react-reconciler"
- ]
+ "types": ["react-reconciler"]
},
"include": [
"next-env.d.ts",
@@ -28,7 +26,10 @@
"**/*.tsx",
"middleware.ts",
"app/(auth)/sign-in/page.jsx",
- "prisma/seed.js"
-, "app/api/auth/[...nextauth]/route.js", "app/api/auth/[...nextauth]/options.js" ],
+ "prisma/seed.js",
+ "app/api/auth/[...nextauth]/route.js",
+ "app/api/auth/[...nextauth]/options.js",
+ "app/(auth)/layout.jsx"
+ ],
"exclude": ["node_modules"]
}