Browse Source

styles update

master
Amit Roy 6 months ago
parent
commit
65de47a998
1 changed files with 15 additions and 6 deletions
  1. +15
    -6
      src/app/(auth)/login/page.tsx

+ 15
- 6
src/app/(auth)/login/page.tsx 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">Sign in to your account</Typography>
<Typography variant="h4" color={"var(--primary_text_clr)"}>
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={"#"}>Terms of Use</Link>
<Link href={"#"} color={"var(--primary_text_clr)"}>
Privacy Policy
</Link>{" "}
|{" "}
<Link href={"#"} color={"var(--primary_text_clr)"}>
Terms of Use
</Link>
</Typography> </Typography>
</Box> </Box>
</Box> </Box>


Loading…
Cancel
Save