Compare commits

...

2 Commits

Author SHA1 Message Date
victorAnumudu 78a9c4bf5f Merge with master 2024-09-25 13:24:01 +01:00
victorAnumudu 8be4ee52f1 updated app store link image 2024-09-24 19:40:50 +01:00
3 changed files with 33 additions and 22 deletions
+14 -8
View File
@@ -16,6 +16,9 @@ import { updateUserDetails } from "../../../store/UserDetails";
import ReCAPTCHA from "react-google-recaptcha"; import ReCAPTCHA from "react-google-recaptcha";
import GoogleDownload from '../../../assets/images/download/andriod.jpg'
import IOSDownload from '../../../assets/images/download/apple.jpg'
export default function Login() { export default function Login() {
// eslint-disable-next-line no-restricted-globals // eslint-disable-next-line no-restricted-globals
const queryParams = new URLSearchParams(location?.search); const queryParams = new URLSearchParams(location?.search);
@@ -526,40 +529,43 @@ export default function Login() {
{/* APP DOWNLOAD STORE */} {/* APP DOWNLOAD STORE */}
<div className="w-full mt-4"> <div className="w-full mt-4">
<div className="w-full flex justify-center items-center gap-4"> <div className="w-full flex justify-center items-center gap-4">
<div className="w-28 lg:w-32"> <div className="w-32 lg:w-48">
<a <a
className="px-1 py-1 lg:py-2 flex justify-center items-center gap-1 w-full rounded-md bg-black text-white hover:text-slate-500 hover:shadow-lg transition-all duration-300" // className="px-1 py-1 lg:py-2 flex justify-center items-center gap-1 w-full rounded-md bg-black text-white hover:text-slate-500 hover:shadow-lg transition-all duration-300"
target="_blank" target="_blank"
rel="noreferrer" rel="noreferrer"
href={process.env.REACT_APP_APPLE_APP} href={process.env.REACT_APP_APPLE_APP}
> >
<i className="fa-brands fa-apple text-3xl"></i> {/* <i className="fa-brands fa-apple text-3xl"></i>
<div className="flex flex-col"> <div className="flex flex-col">
<span className="text-[11px]">Available on the</span> <span className="text-[11px]">Available on the</span>
<span className="text-[12px] lg:text-base"> <span className="text-[12px] lg:text-base">
App Store App Store
</span> </span>
</div> </div> */}
<img src={IOSDownload} className='w-full h-auto' alt='IOS Download' />
</a> </a>
</div> </div>
<div className="w-28 lg:w-32"> <div className="w-32 lg:w-48">
<a <a
className="px-1 py-1 lg:py-2 flex justify-center items-center gap-1 w-full rounded-md bg-black text-white hover:text-slate-500 hover:shadow-lg transition-all duration-300" // className="px-1 py-1 lg:py-2 flex justify-center items-center gap-1 w-full rounded-md bg-black text-white hover:text-slate-500 hover:shadow-lg transition-all duration-300"
target="_blank" target="_blank"
rel="noreferrer" rel="noreferrer"
href={process.env.REACT_APP_ANDROID_APP} href={process.env.REACT_APP_ANDROID_APP}
> >
<i className="fa-brands fa-google-play text-2xl"></i> {/* <i className="fa-brands fa-google-play text-2xl"></i>
<div className="flex flex-col"> <div className="flex flex-col">
<span className="text-[11px]">Available on the</span> <span className="text-[11px]">Available on the</span>
<span className="text-[12px] lg:text-base"> <span className="text-[12px] lg:text-base">
Google Play Google Play
</span> </span>
</div> </div> */}
<img src={GoogleDownload} className='w-full h-auto' alt='IOS Download' />
</a> </a>
</div> </div>
</div> </div>
</div> </div>
{loginType == "full" && ( {loginType == "full" && (
<> <>
<div className="pt-5 text-[#181c32] text-center font-semibold text-[13.975px] leading-[20.9625px]"> <div className="pt-5 text-[#181c32] text-center font-semibold text-[13.975px] leading-[20.9625px]">
+4 -4
View File
@@ -179,10 +179,10 @@ export default function Promo() {
</div> </div>
</div> </div>
{/* APP DOWNLOAD STORE */} {/* APP DOWNLOAD STORE */}
<div className="w-full mt-4"> <div className="w-full mt-4">
<div className="w-full flex justify-between items-center gap-10 sm:gap-32"> <div className="w-full flex justify-center items-center gap-4">
<div className="w-full"> <div className="w-32 lg:w-48">
<a <a
// className="px-1 py-1 lg:py-2 flex justify-center items-center gap-1 w-full rounded-md bg-black text-white hover:text-slate-500 hover:shadow-lg transition-all duration-300" // className="px-1 py-1 lg:py-2 flex justify-center items-center gap-1 w-full rounded-md bg-black text-white hover:text-slate-500 hover:shadow-lg transition-all duration-300"
target="_blank" target="_blank"
@@ -199,7 +199,7 @@ export default function Promo() {
<img src={IOSDownload} className='w-full h-auto' alt='IOS Download' /> <img src={IOSDownload} className='w-full h-auto' alt='IOS Download' />
</a> </a>
</div> </div>
<div className="w-full"> <div className="w-32 lg:w-48">
<a <a
// className="px-1 py-1 lg:py-2 flex justify-center items-center gap-1 w-full rounded-md bg-black text-white hover:text-slate-500 hover:shadow-lg transition-all duration-300" // className="px-1 py-1 lg:py-2 flex justify-center items-center gap-1 w-full rounded-md bg-black text-white hover:text-slate-500 hover:shadow-lg transition-all duration-300"
target="_blank" target="_blank"
+15 -10
View File
@@ -5,6 +5,9 @@ import usersService from "../../../services/UsersService";
import InputCom from "../../Helpers/Inputs/InputCom"; import InputCom from "../../Helpers/Inputs/InputCom";
import AuthLayout from "../AuthLayout2"; import AuthLayout from "../AuthLayout2";
import GoogleDownload from '../../../assets/images/download/andriod.jpg'
import IOSDownload from '../../../assets/images/download/apple.jpg'
export default function SignUp() { export default function SignUp() {
// eslint-disable-next-line no-restricted-globals // eslint-disable-next-line no-restricted-globals
const queryParams = new URLSearchParams(location?.search); const queryParams = new URLSearchParams(location?.search);
@@ -347,36 +350,38 @@ export default function SignUp() {
{/* APP DOWNLOAD STORE */} {/* APP DOWNLOAD STORE */}
<div className="w-full mt-4"> <div className="w-full mt-4">
<div className="w-full flex justify-center items-center gap-4"> <div className="w-full flex justify-center items-center gap-4">
<div className="w-28 lg:w-32"> <div className="w-32 lg:w-48">
<a <a
className="px-1 py-1 lg:py-2 flex justify-center items-center gap-1 w-full rounded-md bg-black text-white hover:text-slate-500 hover:shadow-lg transition-all duration-300" // className="px-1 py-1 lg:py-2 flex justify-center items-center gap-1 w-full rounded-md bg-black text-white hover:text-slate-500 hover:shadow-lg transition-all duration-300"
target="_blank" target="_blank"
href={process.env.REACT_APP_APPLE_APP}
rel="noreferrer" rel="noreferrer"
href={process.env.REACT_APP_APPLE_APP}
> >
<i className="fa-brands fa-apple text-3xl"></i> {/* <i className="fa-brands fa-apple text-3xl"></i>
<div className="flex flex-col"> <div className="flex flex-col">
<span className="text-[11px]">Available on the</span> <span className="text-[11px]">Available on the</span>
<span className="text-[12px] lg:text-base"> <span className="text-[12px] lg:text-base">
App Store App Store
</span> </span>
</div> </div> */}
<img src={IOSDownload} className='w-full h-auto' alt='IOS Download' />
</a> </a>
</div> </div>
<div className="w-28 lg:w-32"> <div className="w-32 lg:w-48">
<a <a
className="px-1 py-1 lg:py-2 flex justify-center items-center gap-1 w-full rounded-md bg-black text-white hover:text-slate-500 hover:shadow-lg transition-all duration-300" // className="px-1 py-1 lg:py-2 flex justify-center items-center gap-1 w-full rounded-md bg-black text-white hover:text-slate-500 hover:shadow-lg transition-all duration-300"
target="_blank" target="_blank"
href={process.env.REACT_APP_ANDROID_APP}
rel="noreferrer" rel="noreferrer"
href={process.env.REACT_APP_ANDROID_APP}
> >
<i className="fa-brands fa-google-play text-2xl"></i> {/* <i className="fa-brands fa-google-play text-2xl"></i>
<div className="flex flex-col"> <div className="flex flex-col">
<span className="text-[11px]">Available on the</span> <span className="text-[11px]">Available on the</span>
<span className="text-[12px] lg:text-base"> <span className="text-[12px] lg:text-base">
Google Play Google Play
</span> </span>
</div> </div> */}
<img src={GoogleDownload} className='w-full h-auto' alt='IOS Download' />
</a> </a>
</div> </div>
</div> </div>