24 lines
937 B
JavaScript
24 lines
937 B
JavaScript
import { Link as RouterLink } from 'react-router-dom';
|
|
|
|
// material-ui
|
|
import { Link, Stack, Typography } from '@mui/material';
|
|
|
|
const Footer = () => (
|
|
<Stack direction="row" justifyContent="space-between" alignItems="center" sx={{ p: '24px 16px 0px', mt: 'auto' }}>
|
|
<Typography variant="caption">© All rights reserved</Typography>
|
|
<Stack spacing={1.5} direction="row" justifyContent="space-between" alignItems="center">
|
|
<Link component={RouterLink} to="https://nearle.in/aboutus" target="_blank" variant="caption" color="textPrimary">
|
|
About us
|
|
</Link>
|
|
<Link component={RouterLink} to="https://nearle.in/privacy" target="_blank" variant="caption" color="textPrimary">
|
|
Privacy
|
|
</Link>
|
|
<Link component={RouterLink} to="https://nearle.in/terms" target="_blank" variant="caption" color="textPrimary">
|
|
Terms
|
|
</Link>
|
|
</Stack>
|
|
</Stack>
|
|
);
|
|
|
|
export default Footer;
|