styles update

This commit is contained in:
Amit Roy 2024-08-07 19:07:11 +05:30
parent 54f0cdfa00
commit 65de47a998

View File

@ -55,7 +55,7 @@ export default function LoginPage() {
}) })
); );
dispatch(setUserDetails(response)); dispatch(setUserDetails(response));
setLoader(false) setLoader(false);
router.push(routes.PRODUCTS); router.push(routes.PRODUCTS);
} catch (err) { } catch (err) {
setLoader(false); setLoader(false);
@ -99,8 +99,12 @@ export default function LoginPage() {
> >
<img src={UTILITY_CONSTANT.IMAGES.AUTH.HEADER_LOG} alt="logo" /> <img src={UTILITY_CONSTANT.IMAGES.AUTH.HEADER_LOG} alt="logo" />
<form onSubmit={handleSubmit(onSubmit)} style={{ width: "100%" }}> <form onSubmit={handleSubmit(onSubmit)} style={{ width: "100%" }}>
<Typography variant="h4">Welcome to Convexsol</Typography> <Typography variant="h4" color={"var(--primary_text_clr)"}>
<Typography variant="h4">Sign in to your account</Typography> Welcome to Convexsol
</Typography>
<Typography variant="h4" color={"var(--primary_text_clr)"}>
Sign in to your account
</Typography>
<Box <Box
width={"100%"} width={"100%"}
marginBlockStart={"40px"} marginBlockStart={"40px"}
@ -140,12 +144,17 @@ export default function LoginPage() {
flexWrap={"wrap"} flexWrap={"wrap"}
gap={2} gap={2}
> >
<Typography variant="caption"> <Typography variant="caption" color={"var(--primary_text_clr)"}>
© 2024 ConvexSol. Pvt.Ltd. All rights reserved. © 2024 ConvexSol. Pvt.Ltd. All rights reserved.
</Typography> </Typography>
<Typography variant="caption"> <Typography variant="caption">
<Link href={"#"}>Privacy Policy</Link> |{" "} <Link href={"#"} color={"var(--primary_text_clr)"}>
<Link href={"#"}>Terms of Use</Link> Privacy Policy
</Link>{" "}
|{" "}
<Link href={"#"} color={"var(--primary_text_clr)"}>
Terms of Use
</Link>
</Typography> </Typography>
</Box> </Box>
</Box> </Box>