diff --git a/public/img/brand/ofw-500x500.png b/public/img/brand/ofw-500x500.png new file mode 100644 index 00000000..4e8c3112 Binary files /dev/null and b/public/img/brand/ofw-500x500.png differ diff --git a/public/img/favicon.ico b/public/img/favicon.ico index be94d1b7..e31870ea 100644 Binary files a/public/img/favicon.ico and b/public/img/favicon.ico differ diff --git a/public/img/favicon/favicon.ico b/public/img/favicon/favicon.ico index be94d1b7..e31870ea 100644 Binary files a/public/img/favicon/favicon.ico and b/public/img/favicon/favicon.ico differ diff --git a/public/img/favicon/favicon1.ico b/public/img/favicon/favicon1.ico new file mode 100644 index 00000000..be94d1b7 Binary files /dev/null and b/public/img/favicon/favicon1.ico differ diff --git a/src/layouts/AuthLayout.jsx b/src/layouts/AuthLayout.jsx index c1cf679f..ad1fa1ee 100644 --- a/src/layouts/AuthLayout.jsx +++ b/src/layouts/AuthLayout.jsx @@ -25,9 +25,10 @@ const AuthLayout = () => { > marco-logo diff --git a/src/pages/Home/LandingPage.jsx b/src/pages/Home/LandingPage.jsx index 67587252..32e853be 100644 --- a/src/pages/Home/LandingPage.jsx +++ b/src/pages/Home/LandingPage.jsx @@ -14,6 +14,11 @@ const LandingPage = () => {
+ OnField Work diff --git a/src/pages/authentication/AuthWrapper.jsx b/src/pages/authentication/AuthWrapper.jsx index 5c8f0eb9..8b96fe10 100644 --- a/src/pages/authentication/AuthWrapper.jsx +++ b/src/pages/authentication/AuthWrapper.jsx @@ -7,27 +7,30 @@ export const AuthWrapper = ({ children }) => { {/*
*/} -
-
- - - marco-logo - - - {/*
*/} - {children} -
-
+
+
+ + + marco-logo + + + {/*
*/} + {children}
- //
+
+
+ //
//
); -}; \ No newline at end of file +}; diff --git a/src/pages/authentication/RegisterPage.jsx b/src/pages/authentication/RegisterPage.jsx index 65b7d619..f13dbd01 100644 --- a/src/pages/authentication/RegisterPage.jsx +++ b/src/pages/authentication/RegisterPage.jsx @@ -37,33 +37,36 @@ const registerSchema = z.object({ const RegisterPage = () => { const [registered, setRegristered] = useState(false); const [industries, setIndustries] = useState([]); - const [Loading,setLoading] = useState(false) + const [Loading, setLoading] = useState(false); const { register, handleSubmit, - formState: { errors },reset + formState: { errors }, + reset, } = useForm({ resolver: zodResolver(registerSchema), }); const onSubmit = async (data) => { try { - setLoading(true) + setLoading(true); const response = await MarketRepository.requestDemo(data); - showToast("Your request has been sent successfully. Please stay in touch!"); + showToast( + "Your request has been sent successfully. Please stay in touch!" + ); setRegristered(true); - setLoading(false) - reset() + setLoading(false); + reset(); } catch (error) { showToast(error.message, "error"); - setLoading(false) + setLoading(false); } }; useEffect(() => { fetchIndustries(); }, []); - useEffect(() => { }, [industries]); + useEffect(() => {}, [industries]); const fetchIndustries = async () => { try { @@ -76,10 +79,8 @@ const RegisterPage = () => { }; return ( <> -
-

Adventure starts here

Make your app management easy and fun!

@@ -88,65 +89,64 @@ const RegisterPage = () => { className="mb-2" onSubmit={handleSubmit(onSubmit)} > -
-
- - - {errors.organizatioinName && ( -
- {errors.organizatioinName.message} -
- )} -
-
- - - {errors.email && ( -
- {errors.email.message} -
- )} -
+
+ + + {errors.organizatioinName && ( +
+ {errors.organizatioinName.message} +
+ )} +
+
+ + + {errors.email && ( +
+ {errors.email.message} +
+ )} +
- + {errors.contactPerson && (
{ - + {errors.contactNumber && (
{ - + {errors.about && (
{ - + {errors.oragnizationSize && (
{ - + {errors.industryId && (
{ privacy policy & terms -
{errors.terms && (
{
@@ -300,10 +299,10 @@ const RegisterPage = () => { - + Back to login

@@ -313,4 +312,4 @@ const RegisterPage = () => { ); }; -export default RegisterPage; \ No newline at end of file +export default RegisterPage;