diff --git a/components/Auth/ConfirmEmail/index.jsx b/components/Auth/ConfirmEmail/index.jsx
deleted file mode 100644
index 5b14749..0000000
--- a/components/Auth/ConfirmEmail/index.jsx
+++ /dev/null
@@ -1,32 +0,0 @@
-// import React from 'react'
-
-// const ConfirmEmail = () => {
-// return (
-//
-//
-//
-//
-//
-//
-//
-//
-//
-//
-//
-//
-//
-//
-//
Success !
-//
A email has been send to youremail@domain.com. Please check for an email from company and click on the included link to reset your password.
-//
-//
-//
-
-//
-//
-// )
-// }
-
-// export default ConfirmEmail
diff --git a/components/Auth/ConfirmEmail/index.tsx b/components/Auth/ConfirmEmail/index.tsx
new file mode 100644
index 0000000..85c77af
--- /dev/null
+++ b/components/Auth/ConfirmEmail/index.tsx
@@ -0,0 +1,41 @@
+import React from "react";
+
+const ConfirmEmail = () => {
+ return (
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Success !
+
+ A email has been send to youremail@domain.com. Please check for an
+ email from company and click on the included link to reset your
+ password.
+
+
+
+
+
+
+ );
+};
+
+export default ConfirmEmail;
diff --git a/components/Auth/LoginPage/index.jsx b/components/Auth/LoginPage/index.jsx
deleted file mode 100644
index e8229d9..0000000
--- a/components/Auth/LoginPage/index.jsx
+++ /dev/null
@@ -1,54 +0,0 @@
-// import React from "react";
-// import { useRouter } from "next/router";
-
-// const LoginPage = () => {
-// const router = useRouter();
-// return (
-//
-//
-//
-//
Yokaa
-// Log In
-//
-//
-//
-// You don't have an account ?
-// router.push("/signup")}
-// >
-// Sign up
-//
-//
-//
-//
-//
-// );
-// };
-
-// export default LoginPage;
diff --git a/components/Auth/LoginPage/index.tsx b/components/Auth/LoginPage/index.tsx
new file mode 100644
index 0000000..4b7e8ed
--- /dev/null
+++ b/components/Auth/LoginPage/index.tsx
@@ -0,0 +1,54 @@
+import React from "react";
+import { useRouter } from "next/router";
+
+const LoginPage = () => {
+ const router = useRouter();
+ return (
+
+
+
+
Yokaa
+ Log In
+
+
+
+ You don't have an account ?
+ router.push("/signup")}
+ >
+ Sign up
+
+
+
+
+
+ );
+};
+
+export default LoginPage;
diff --git a/components/Auth/ResetPassword/index.jsx b/components/Auth/ResetPassword/index.jsx
deleted file mode 100644
index 6397b35..0000000
--- a/components/Auth/ResetPassword/index.jsx
+++ /dev/null
@@ -1,32 +0,0 @@
-// import React from 'react'
-
-// const ResetPassword = () => {
-// return (
-//
-//
-//
-//
-//
-//
-//
-//
-//
-//
Reset password
-//
Enter your email address and we'll send you an email with instructions to reset your password
-//
-
-//
-//
-//
-
-//
-//
-// )
-// }
-
-// export default ResetPassword
diff --git a/components/Auth/ResetPassword/index.tsx b/components/Auth/ResetPassword/index.tsx
new file mode 100644
index 0000000..e1febe2
--- /dev/null
+++ b/components/Auth/ResetPassword/index.tsx
@@ -0,0 +1,45 @@
+import React from "react";
+
+const ResetPassword = () => {
+ return (
+
+
+
+
+
+
+
+
+
+
+ Reset password
+
+
+ Enter your email address and we'll send you an email with
+ instructions to reset your password{" "}
+
+
+
+
+
+
+
+ );
+};
+
+export default ResetPassword;
diff --git a/components/Auth/SignupPage/index.jsx b/components/Auth/SignupPage/index.jsx
deleted file mode 100644
index 0e46f2a..0000000
--- a/components/Auth/SignupPage/index.jsx
+++ /dev/null
@@ -1,67 +0,0 @@
-// import React from "react";
-// import { useRouter } from "next/router";
-
-// const SignupPage = () => {
-// const router = useRouter();
-// return (
-//
-//
-//
-//
Yokaa
-// Sign Up
-//
-//
-//
-//
-//
-//
-//
-//
router.push("/login")} className="cursor-pointer">
-// Log In
-//
-//
-//
-//
-//
-// );
-// };
-
-// export default SignupPage;
diff --git a/components/Auth/SignupPage/index.tsx b/components/Auth/SignupPage/index.tsx
new file mode 100644
index 0000000..3e748e8
--- /dev/null
+++ b/components/Auth/SignupPage/index.tsx
@@ -0,0 +1,67 @@
+import React from "react";
+import { useRouter } from "next/router";
+
+const SignupPage = () => {
+ const router = useRouter();
+ return (
+
+
+
+
Yokaa
+ Sign Up
+
+
+
+
+
+
+
+
router.push("/login")} className="cursor-pointer">
+ Log In
+
+
+
+
+
+ );
+};
+
+export default SignupPage;