From 1fcaa1323a4e38fc41d865c97a11fa32e90aae1d Mon Sep 17 00:00:00 2001 From: Mahyar Khanbolooki Date: Wed, 2 Jul 2025 19:15:40 +0330 Subject: [PATCH] chore: auth number screen responsive styles --- .../auth/components/StepEnterNumber.tsx | 48 ++++++++++++------- 1 file changed, 31 insertions(+), 17 deletions(-) diff --git a/src/features/auth/components/StepEnterNumber.tsx b/src/features/auth/components/StepEnterNumber.tsx index 3d562f4..80fee24 100644 --- a/src/features/auth/components/StepEnterNumber.tsx +++ b/src/features/auth/components/StepEnterNumber.tsx @@ -1,6 +1,7 @@ import Button from '@/components/button/PrimaryButton'; import InputField from '@/components/input/InputField'; import { AUTH_PAGE_ELEMENT } from '@/enums'; +import Image from 'next/image'; import React from 'react' type Props = { @@ -11,25 +12,38 @@ type Props = { function StepEnterNumber({ onSubmit, onChange, value }: Props) { return ( -
-
- -
-
ورود به سیستم
-

برای ورود شماره همراه خود را وارد نمایید.

+ +
+ login banner +
+
+
+
ورود به سیستم
+

برای ورود شماره همراه خود را وارد نمایید.

+
+ +
+
- +
- ) }