+
{title ? title : 'نام کاربری'}
@@ -51,7 +51,7 @@ const Input = ({
type={type ? type : 'text'}
name="Login-box-form-item-input-name"
id={`Login-box-form-item-input-name${id}`}
- className={`Login-box-form-item-input w-full h-full px-4 outline-0 rounded text-red52`}
+ className={`Login-box-form-item-input w-full h-full px-4 outline-0 rounded-lg text-red52`}
style={{ direction: direction ? direction : "ltr", backgroundColor: bg }}
onFocus={() => focusHandler(id ? id : 0)}
onBlur={() => blurHandler(id ? id : 0)}
diff --git a/src/view/contact/index.js b/src/view/contact/index.js
index a3dca3d..633a4af 100644
--- a/src/view/contact/index.js
+++ b/src/view/contact/index.js
@@ -1,9 +1,9 @@
-import React from "react";
+import React, { useState } from "react";
import Button from "../../components/Button";
import Input from "../../components/input";
import Map from '../../components/Map'
-
-const ContactUs = () => {
+import { connect } from "react-redux";
+const ContactUs = ({isMobile}) => {
const departments = [
@@ -27,15 +27,94 @@ const ContactUs = () => {
},
]
+
+ const [phase, setPhase] = useState(1);
+
return (
+ isMobile ?
+
+
تماس با ما
+
+
+
+
+ {
+ phase == 1 ?
+
+ :
+
+
+
+
+
+
+
+
+
آدرس ما
+
تهران خیابان انقلاب بین ابوریحان و فلسطین بن بست سروش پلاک 2
+
+
+
شماره تماس
+
02163462405 - 02163462406
+
+
+
+
ایمیل سازمانی
+
Info@Azmoonsample.ir
+
+
+
+
+
+
شماره پیامک
+
300000000008762144
+
توجه داشته باشید تمامی پیامک ها از سامانه آزمون از طریق همین سرشماره برای شما ارسال خواهد شد
+
+
+
+
+
+
+
+
+ }
+
+
+ :
+