diff --git a/app/(auth)/layout.tsx b/app/(auth)/layout.tsx
new file mode 100644
index 0000000..98282d1
--- /dev/null
+++ b/app/(auth)/layout.tsx
@@ -0,0 +1,12 @@
+import React from "react";
+
+const clearLayout = ({ children }: Readonly<{ children: React.ReactNode }>) => {
+ return (
+
+ );
+};
+
+export default clearLayout;
diff --git a/app/(auth)/log-in/page.tsx b/app/(auth)/log-in/page.tsx
new file mode 100644
index 0000000..98fff1f
--- /dev/null
+++ b/app/(auth)/log-in/page.tsx
@@ -0,0 +1,12 @@
+import LoginCard from "@/widgets/login/loginCard/Index";
+import React from "react";
+
+const page = () => {
+ return (
+
+
+
+ );
+};
+
+export default page;
diff --git a/app/(clean)/sign-up/page.tsx b/app/(auth)/sign-up/page.tsx
similarity index 100%
rename from app/(clean)/sign-up/page.tsx
rename to app/(auth)/sign-up/page.tsx
diff --git a/app/(clean)/layout.tsx b/app/(clean)/layout.tsx
deleted file mode 100644
index df396bc..0000000
--- a/app/(clean)/layout.tsx
+++ /dev/null
@@ -1,7 +0,0 @@
-import React from "react";
-
-const clearLayout = ({ children }: Readonly<{ children: React.ReactNode }>) => {
- return {children}
;
-};
-
-export default clearLayout;
diff --git a/app/(clean)/log-in/page.tsx b/app/(clean)/log-in/page.tsx
deleted file mode 100644
index dec8a19..0000000
--- a/app/(clean)/log-in/page.tsx
+++ /dev/null
@@ -1,20 +0,0 @@
-import LoginCard from "@/widgets/login/loginCard/Index";
-import React from "react";
-
-const page = () => {
- return (
- <>
- {/* Fixed background overlay */}
-
- {/* Fixed background overlay */}
-
- {/* Login card centered on the screen */}
-
-
-
-
- >
- );
-};
-
-export default page;
diff --git a/widgets/login/loginCard/EmailForm.tsx b/widgets/login/loginCard/EmailForm.tsx
index 6b673b2..64d53c9 100644
--- a/widgets/login/loginCard/EmailForm.tsx
+++ b/widgets/login/loginCard/EmailForm.tsx
@@ -6,7 +6,7 @@ const EmailForm = () => {
// Form component to handle email input