Skip to content

Commit

Permalink
added text Powered by EkStep Foundation
Browse files Browse the repository at this point in the history
  • Loading branch information
MrigankTarento committed Dec 6, 2023
1 parent 7ec9f8a commit cdd4cb5
Show file tree
Hide file tree
Showing 6 changed files with 114 additions and 25 deletions.
66 changes: 65 additions & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 6 additions & 1 deletion src/common/Footer.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,12 @@ const Footer = () => {
lg={7}
xl={7}
className={classes.footerGrid}
></Grid>
>
<Typography variant="caption" sx={{ color: "white" }}>
{" "}
Powered by EkStep Foundation{" "}
</Typography>{" "}
</Grid>

<Grid
item
Expand Down
10 changes: 9 additions & 1 deletion src/common/Header.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -156,9 +156,12 @@ const Header = () => {
<Toolbar disableGutters className={classes.toolbar}>
<Box
display="flex"
flexDirection="row"
flexWrap={"wrap"}
alignItems="center"
justifyContent="space-evenly" // Add justifyContent to distribute space between items
onClick={() => navigate("/login")}
style={{cursor: "pointer"}}
style={{ cursor: "pointer" }}
>
<img
src={"Chitralekha_Logo_Transparent.png"}
Expand All @@ -168,8 +171,13 @@ const Header = () => {
<Typography variant="h4" sx={{ color: "black" }}>
Chitralekha
</Typography>
<Typography sx={{ fontSize: "0.7rem", fontWeight: "500", color: "#000000", margin: "auto" }}>
Powered by EkStep Foundation
</Typography>
</Box>



<Grid
container
direction="row"
Expand Down
5 changes: 5 additions & 0 deletions src/common/IntroHeader.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ import {
Toolbar,
IconButton,
Button,
Typography,
} from "@mui/material";

const drawerWidth = 240;
Expand Down Expand Up @@ -100,6 +101,10 @@ function IntroHeader(props) {
Use Cases
</Button>
</Grid>
<Grid><Typography sx={{position: "absolute", bottom: 50, right: 1, left: 1, fontSize: "0.7rem", fontWeight: "500", color: "#000000", marginTop: "auto" }}>
Powered by EkStep Foundation
</Typography></Grid>

</Grid>
</Box>
);
Expand Down
47 changes: 25 additions & 22 deletions src/common/MobileNavbar.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -105,17 +105,17 @@ function MobileNavbar({ UserMenu, SettingsMenu }) {
<Box >
<List>
{tabs.map((tab, index) => (
<ListItem key={index} onClick={() => setOpenDrawer(false)}>
<Typography variant="body1">
<NavLink
to=""
className={classes.headerMenu}
activeClassName={classes.highlightedMenu}
>
{tab.name}
</NavLink>
</Typography>
</ListItem>
<ListItem key={index} onClick={() => setOpenDrawer(false)}>
<Typography variant="body1">
<NavLink
to=""
className={classes.headerMenu}
activeClassName={classes.highlightedMenu}
>
{tab.name}
</NavLink>
</Typography>
</ListItem>
))}
</List>
</Box>
Expand Down Expand Up @@ -197,19 +197,22 @@ function MobileNavbar({ UserMenu, SettingsMenu }) {
padding: "0 5%",
}}
>
<Box display="flex" alignItems="center">
<img
src={"Chitralekha_Logo_Transparent.png"}
alt="logo"
className={classes.headerLogo}
/>
<Typography
variant="h3"
sx={{ color: "black", marginLeft: "10px" }}
>
Chitralekha
<Box display="flex" flexDirection="column" alignItems="center">
<Box display="flex" alignItems="center">
<img
src={"Chitralekha_Logo_Transparent.png"}
alt="logo"
className={classes.headerLogo}
/>
<Typography variant="h3" sx={{ color: "black", marginLeft: "10px" }}>
Chitralekha
</Typography>
</Box>
<Typography sx={{ fontSize: "0.7rem", fontWeight: "500", color: "#000000", marginTop: "auto" }}>
Powered by EkStep Foundation
</Typography>
</Box>

<Grid item>
<IconButton onClick={() => setOpenDrawer(!openDrawer)}>
<MenuIcon />
Expand Down
4 changes: 4 additions & 0 deletions src/containers/UserManagement/AppInfo.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,10 @@ export default function AppInfo() {
{translate("label.chitralekhaInfo")}
</Typography>
</Hidden>
<Typography
style={{ position: 'absolute', fontSize: "1rem", bottom: "0.5rem", margin: "20px 0px 50px 39px" }}>
Powered by EkStep Foundation
</Typography>
</Grid>
</ThemeProvider>
</div>
Expand Down

0 comments on commit cdd4cb5

Please sign in to comment.