File size: 1,431 Bytes
f1b3b1d
09553f2
e7abd9e
 
09553f2
 
e7abd9e
 
 
 
f1b3b1d
e7abd9e
f1b3b1d
09553f2
 
 
e7abd9e
 
09553f2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
e7abd9e
 
 
 
f1b3b1d
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
import React from "react";
import { Box, Typography, Link, Stack } from "@mui/material";

const Footer = () => {
  const currentYear = new Date().getFullYear();

  return (
    <Box
      component="footer"
      sx={{
        width: "100%",
        py: 4,
        textAlign: "center",
        backgroundColor: "background.paper",
        borderTop: "1px solid",
        borderColor: "divider",
      }}
    >
      <Stack spacing={2}>
        <Typography variant="body2" color="text.secondary">
          © {currentYear} The Fin AI - Open Financial LLM Leaderboard
        </Typography>
        <Stack direction="row" spacing={2} justifyContent="center">
          <Link
            href="https://thefin.ai"
            target="_blank"
            rel="noopener noreferrer"
            color="inherit"
            underline="hover"
          >
            Home
          </Link>
          <Link
            href="https://github.com/thefin-ai"
            target="_blank"
            rel="noopener noreferrer"
            color="inherit"
            underline="hover"
          >
            GitHub
          </Link>
          <Link
            href="https://thefin.ai/docs"
            target="_blank"
            rel="noopener noreferrer"
            color="inherit"
            underline="hover"
          >
            Documentation
          </Link>
        </Stack>
      </Stack>
    </Box>
  );
};

export default Footer;