feat(UserInterface): add footer fields for customization

This commit is contained in:
Ali BARIN
2025-03-10 09:36:58 +00:00
parent 91fd10ebda
commit fa2b03ce3d
3 changed files with 132 additions and 7 deletions

View File

@@ -5,13 +5,13 @@ import Typography from '@mui/material/Typography';
import useFormatMessage from 'hooks/useFormatMessage';
import useVersion from 'hooks/useVersion';
const Footer = () => {
const AdminSettingsLayoutFooter = () => {
const version = useVersion();
const formatMessage = useFormatMessage();
return (
typeof version?.version === 'string' && (
<Box mt="auto" position="sticky" bottom={0}>
<Box mt="auto" position="sticky" bottom={0} zIndex={99}>
<Box bgcolor="common.white" mt={4}>
<Divider />
<Typography
@@ -32,4 +32,4 @@ const Footer = () => {
);
};
export default Footer;
export default AdminSettingsLayoutFooter;