File size: 1,364 Bytes
95b5a04 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 | import { Link as RouterLink } from 'react-router-dom';
// material-ui
import Link from '@mui/material/Link';
import Stack from '@mui/material/Stack';
import Typography from '@mui/material/Typography';
export default function Footer() {
return (
<Stack direction="row" sx={{ alignItems: 'center', justifyContent: 'space-between', pt: 3, mt: 'auto' }}>
<Typography variant="caption">
© All rights reserved{' '}
<Typography component={Link} href="https://codedthemes.com" underline="hover" target="_blank" sx={{ color: 'secondary.main' }}>
CodedThemes
</Typography>
</Typography>
<Stack direction="row" sx={{ gap: 1.5, alignItems: 'center', justifyContent: 'space-between' }}>
<Link
component={RouterLink}
to="https://github.com/codedthemes/berry-free-react-admin-template"
underline="hover"
target="_blank"
variant="caption"
color="text.primary"
>
GitHub
</Link>
<Link
component={RouterLink}
to="https://www.figma.com/community/file/1468460364009262125/berry-free-dashboard-ui-kit"
underline="hover"
target="_blank"
variant="caption"
color="text.primary"
>
Figma UI Kit
</Link>
</Stack>
</Stack>
);
}
|