Files
frontend/src/components/layouts/dashboard/headerWithLogo/HaederBottom/index.jsx
Amirhossein Mahmoodi 15bab1a6a4 change style headers
2024-08-18 15:25:20 +03:30

29 lines
969 B
JavaScript

"use client";
import { Stack, Typography } from "@mui/material";
import Image from "next/image";
import RmsLogo from "@/assets/images/rmsLogo.png";
const HeaderBottom = () => {
return (
<Stack
sx={{
px: 2,
py: 1,
background: (theme) => theme.palette.primary2.main,
}}
spacing={4}
alignItems={"center"}
direction={"row"}
>
<Image alt="" priority src={RmsLogo.src} width={50} height={54} />
<Stack alignItems={"center"} spacing={1}>
<Typography variant="h6" sx={{ color: (theme) => theme.palette.primary2.contrastText }}>
سامانه جامع راهداری
</Typography>
<Typography sx={{ color: (theme) => theme.palette.primary2.contrastText }}>rms.rmto.ir</Typography>
</Stack>
</Stack>
);
};
export default HeaderBottom;