feat(Layout): add custom footer

This commit is contained in:
Ali BARIN
2025-03-10 09:36:40 +00:00
parent 035ed6fee3
commit 91fd10ebda
6 changed files with 157 additions and 1 deletions

View File

@@ -37,6 +37,18 @@ const customizeTheme = (theme, config) => {
config.palettePrimaryDark,
);
overrideIfGiven(
shallowDefaultTheme,
'palette.footer.main',
config.footerBackgroundColor,
);
overrideIfGiven(
shallowDefaultTheme,
'palette.footer.text',
config.footerTextColor,
);
return shallowDefaultTheme;
};