AbdulElahGwaith's picture
Upload folder using huggingface_hub
95b5a04 verified
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">
&copy; 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>
);
}