This commit is contained in:
Amirhossein Mahmoodi
2024-07-10 14:14:09 +03:30
parent 6154b8567f
commit 2a4359ff24
5 changed files with 7 additions and 4 deletions

View File

@@ -14,7 +14,7 @@ const HeaderBottom = () => {
alignItems={"center"}
direction={"row"}
>
<Image alt="" priority src={"/images/rmsLogo.svg"} width={65} height={71} />
<Image alt="" priority src={"/images/rmsLogo.png"} width={65} height={71} />
<Stack alignItems={"center"} spacing={1}>
<Typography variant="h5" sx={{ color: (theme) => theme.palette.primary2.contrastText }}>
سامانه جامع راهداری

View File

@@ -1,11 +1,12 @@
import { AirlineSeatReclineNormal, Assessment, Repartition, Security, SpaceDashboard } from "@mui/icons-material";
import { Security } from "@mui/icons-material";
const prefix = process.env.NODE_ENV === 'production' ? '/v3' : ''
export const pageMenu = [
{
id: "dashboard",
label: "پیشخوان",
type: "page",
route: "/dashboard",
route: prefix + "/dashboard",
icon: <Security sx={{ width: "inherit", height: "inherit" }} />,
permissions: ["all"]
},