diff --git a/src/assets/images/wrench-promo-back-common.jpg b/src/assets/images/wrench-promo-back-common.jpg new file mode 100644 index 0000000..b79d6d1 Binary files /dev/null and b/src/assets/images/wrench-promo-back-common.jpg differ diff --git a/src/components/AuthPages/Promo/Promo.jsx b/src/components/AuthPages/Promo/Promo.jsx index 2bcaf4e..2673e24 100644 --- a/src/components/AuthPages/Promo/Promo.jsx +++ b/src/components/AuthPages/Promo/Promo.jsx @@ -10,6 +10,9 @@ import InputCom from "../../Helpers/Inputs/InputCom"; import WrenchBoard from "../../../assets/images/wrenchboard-logo-text.png"; import LoadingSpinner from '../../../components/Spinners/LoadingSpinner' +import GoogleDownload from '../../../assets/images/download/andriod.jpg' +import IOSDownload from '../../../assets/images/download/apple.jpg' + export default function Promo() { const api = new usersService() @@ -150,7 +153,6 @@ export default function Promo() { type={showPassword ? "text" : "password"} onClick={togglePasswordVisibility} passIcon={showPassword ? "password" : "password"} - forgotPassword /> @@ -176,6 +178,46 @@ export default function Promo() { + + {/* APP DOWNLOAD STORE */} +
+
+
+ + {/* +
+ Available on the + + App Store + +
*/} + IOS Download +
+
+
+ + {/* +
+ Available on the + + Google Play + +
*/} + IOS Download +
+
+
+
: diff --git a/src/components/AuthPages/PromoPageLayout.jsx b/src/components/AuthPages/PromoPageLayout.jsx index 1df1f48..db0d9ff 100644 --- a/src/components/AuthPages/PromoPageLayout.jsx +++ b/src/components/AuthPages/PromoPageLayout.jsx @@ -7,7 +7,7 @@ import DarkModeContext from "../Contexts/DarkModeContext"; export default function PromoPageLayout({ children }) { const bgImg = localImgLoad("images/left-wrenchboard.jpg"); const bgImgNig = localImgLoad("images/wrench-home-back-nigeria.jpg"); - const bgImgCom = localImgLoad("images/wrench-home-back-common.jpg"); + const bgImgCom = localImgLoad("images/wrench-promo-back-common.jpg"); const { countryMode } = useContext(DarkModeContext); @@ -15,7 +15,7 @@ export default function PromoPageLayout({ children }) {
diff --git a/src/components/Dashboards/AccountDashboard.jsx b/src/components/Dashboards/AccountDashboard.jsx index 42410c0..771d1ea 100644 --- a/src/components/Dashboards/AccountDashboard.jsx +++ b/src/components/Dashboards/AccountDashboard.jsx @@ -14,7 +14,6 @@ const AccountDashboard = ({ className, bannerList }) => { } }; - console.log(getLowerBanner); return (
{ src={image} alt="banner-img" loading="lazy" - className="w-full h-full rounded-t-xl object-cover" + className="w-full h-full rounded-t-xl object-cove object-fill" /> -
+
- + {title} {desc}
-
+
{btn} @@ -113,7 +112,7 @@ const LowerBanner = ({ image, title = "", desc = "", btn, link_path, card_type, className="flex flex-col bg-white shadow-md h-full rounded-xl dark:border-[#5356fb29] dark:bg-dark-white" >
-
+
{title} @@ -132,7 +131,7 @@ const LowerBanner = ({ image, title = "", desc = "", btn, link_path, card_type, />
-
+
{btn} @@ -181,7 +180,7 @@ const BannerSection = ({ banners, variant }) => { variant === "top" ? "rounded-b-xl bg-white" : "border-b border-slate-300" - } h-[7rem]`} + }`} >
@@ -191,7 +190,7 @@ const BannerSection = ({ banners, variant }) => { {short_description}
-
+
{short_button_text} diff --git a/src/components/Helpers/Inputs/InputCom/index.jsx b/src/components/Helpers/Inputs/InputCom/index.jsx index 13f48cb..7980673 100644 --- a/src/components/Helpers/Inputs/InputCom/index.jsx +++ b/src/components/Helpers/Inputs/InputCom/index.jsx @@ -94,7 +94,7 @@ export default function InputCom({ placeholder={placeholder} value={value} onChange={inputHandler} - className={`input-field placeholder:text-base text-dark-gray w-full h-full ${ + className={`input-field placeholder:text-base text-dark-gray w-full h-full ${iconName && 'pr-6'} ${ inputBg && inputBg} tracking-wide focus:ring-0 focus:outline-none ${fieldClass}`} type={type} id={name}