diff --git a/src/app/(auth)/login/page.tsx b/src/app/(auth)/login/page.tsx
new file mode 100644
index 0000000..73a37b2
--- /dev/null
+++ b/src/app/(auth)/login/page.tsx
@@ -0,0 +1,11 @@
+'use client'
+
+import LoginForm from '@/app/features/auth/components/LoginForm'
+
+export default function Login() {
+ return (
+ <>
+
+ >
+ )
+}
diff --git a/src/app/auth/page.tsx b/src/app/(auth)/signin/page.tsx
similarity index 97%
rename from src/app/auth/page.tsx
rename to src/app/(auth)/signin/page.tsx
index 2184c26..df4921f 100644
--- a/src/app/auth/page.tsx
+++ b/src/app/(auth)/signin/page.tsx
@@ -54,7 +54,7 @@ export default function MyForm() {
hasError={touchedFields.password && !!errors.password}
errorMessage={touchedFields.password ? errors.password?.message : ''}
/>
-
+