styles: dashboard
This commit is contained in:
parent
d17a2811da
commit
27ab414493
@ -1,11 +1,21 @@
|
|||||||
import TanStackTable from "@/components/table/TanStackTable";
|
import TanStackTable from "@/components/table/TanStackTable";
|
||||||
|
import { Box, Card, Typography } from "@mui/material";
|
||||||
import React from "react";
|
import React from "react";
|
||||||
|
import CardHeader from "@mui/material/CardHeader";
|
||||||
|
import CardContent from "@mui/material/CardContent";
|
||||||
|
|
||||||
const HomePage = () => {
|
const HomePage = () => {
|
||||||
return (
|
return (
|
||||||
<div>
|
<Box>
|
||||||
|
<Card>
|
||||||
|
<CardHeader>
|
||||||
|
<Typography variant="h4">Projects</Typography>
|
||||||
|
</CardHeader>
|
||||||
|
<CardContent>
|
||||||
<TanStackTable />
|
<TanStackTable />
|
||||||
</div>
|
</CardContent>
|
||||||
|
</Card>
|
||||||
|
</Box>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -21,6 +21,7 @@ import { UTILITY_CONSTANT } from "@/utilities/utilityConstant";
|
|||||||
import styles from "./DashboardWrapper.module.scss";
|
import styles from "./DashboardWrapper.module.scss";
|
||||||
import styled from "@emotion/styled";
|
import styled from "@emotion/styled";
|
||||||
import { BUILDING, GEAR } from "@/utilities/svgConstant";
|
import { BUILDING, GEAR } from "@/utilities/svgConstant";
|
||||||
|
import LogoutIcon from "@mui/icons-material/Logout";
|
||||||
|
|
||||||
const drawerWidth = 260;
|
const drawerWidth = 260;
|
||||||
|
|
||||||
@ -154,6 +155,7 @@ export default function DashboardWrapper(props: Props) {
|
|||||||
Responsive drawer
|
Responsive drawer
|
||||||
</Typography>
|
</Typography>
|
||||||
</Box>
|
</Box>
|
||||||
|
<Box display={"flex"} alignItems={"center"} gap={1}>
|
||||||
<Box
|
<Box
|
||||||
display={"flex"}
|
display={"flex"}
|
||||||
alignItems={"center"}
|
alignItems={"center"}
|
||||||
@ -176,13 +178,17 @@ export default function DashboardWrapper(props: Props) {
|
|||||||
alt="Remy Sharp"
|
alt="Remy Sharp"
|
||||||
src="/static/images/avatar/1.jpg"
|
src="/static/images/avatar/1.jpg"
|
||||||
/>
|
/>
|
||||||
<GEAR
|
{/* <GEAR
|
||||||
sx={{
|
sx={{
|
||||||
color: "var(--primary_Active_text)",
|
color: "var(--primary_Active_text)",
|
||||||
fontSize: "1.8rem",
|
fontSize: "1.8rem",
|
||||||
cursor: "pointer",
|
cursor: "pointer",
|
||||||
}}
|
}}
|
||||||
/>
|
/> */}
|
||||||
|
<IconButton aria-label="log out" size="medium" color="error">
|
||||||
|
<LogoutIcon fontSize="small" />
|
||||||
|
</IconButton>
|
||||||
|
</Box>
|
||||||
</Box>
|
</Box>
|
||||||
</Toolbar>
|
</Toolbar>
|
||||||
</CssAppBar>
|
</CssAppBar>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user