File size: 654 Bytes
e7abd9e
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
import React from 'react';
import { Box, Typography, Link } from '@mui/material';

const Footer = () => {
  return (
    <Box
      component="footer"
      sx={{
        width: '100%',
        py: 4,
        textAlign: 'center',
      }}
    >
      <Typography variant="body2" color="text.secondary">
        © 2024 Hugging Face - Open LLM Leaderboard - Made with 🤗 by the HF team - {' '}
        <Link 
          href="https://huggingface.co" 
          target="_blank" 
          rel="noopener noreferrer"
          color="inherit"
        >
          huggingface.co
        </Link>
      </Typography>
    </Box>
  );
};

export default Footer;