32 lines
742 B
JavaScript
32 lines
742 B
JavaScript
import React from 'react';
|
|
import { Box, Typography } from '@mui/material';
|
|
|
|
const Footer = () => {
|
|
return (
|
|
<Box
|
|
component="footer"
|
|
sx={{
|
|
py: { xs: 1, sm: 2 },
|
|
px: { xs: 1, sm: 2 },
|
|
backgroundColor: (theme) =>
|
|
theme.palette.mode === 'light'
|
|
? theme.palette.grey[200]
|
|
: theme.palette.grey[800],
|
|
textAlign: 'center',
|
|
borderTop: (theme) => `1px solid ${theme.palette.divider}`,
|
|
}}
|
|
>
|
|
<Typography
|
|
variant="body2"
|
|
color="text.secondary"
|
|
sx={{
|
|
fontSize: { xs: '0.75rem', sm: '0.875rem' },
|
|
}}
|
|
>
|
|
© ehchadservices.com 2025
|
|
</Typography>
|
|
</Box>
|
|
);
|
|
};;
|
|
|
|
export default Footer; |