UNPKG

materio-mui-react-nextjs-admin-template-free

Version:

Most Powerful & Comprehensive Free MUI React NextJS Admin Dashboard Template built for developers! 🚀

46 lines (39 loc) • 1.03 kB
// ** MUI Imports import Box from '@mui/material/Box' import { useTheme } from '@mui/material/styles' // ** Footer Content Component import FooterContent from './FooterContent' const Footer = props => { // ** Props const { settings, footerContent: userFooterContent } = props // ** Hook const theme = useTheme() // ** Vars const { contentWidth } = settings return ( <Box component='footer' className='layout-footer' sx={{ zIndex: 10, display: 'flex', alignItems: 'center', justifyContent: 'center' }} > <Box className='footer-content-container' sx={{ width: '100%', borderTopLeftRadius: 14, borderTopRightRadius: 14, padding: theme.spacing(4, 6), ...(contentWidth === 'boxed' && { '@media (min-width:1440px)': { maxWidth: 1440 } }) }} > {userFooterContent ? userFooterContent(props) : <FooterContent />} </Box> </Box> ) } export default Footer