mirageco's picture
Change footer to finos fundation
12db4de
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} Finos Fundation - Open Financial LLM Leaderboard
</Typography>
<Stack direction="row" spacing={2} justifyContent="center">
<Link
href="https://www.finos.org/"
target="_blank"
rel="noopener noreferrer"
color="inherit"
underline="hover"
>
Home
</Link>
<Link
href="https://github.com/finos-labs/Open-Financial-LLMs-Leaderboard"
target="_blank"
rel="noopener noreferrer"
color="inherit"
underline="hover"
>
GitHub
</Link>
<Link
href="https://finllm-leaderboard.readthedocs.io/en/latest/"
target="_blank"
rel="noopener noreferrer"
color="inherit"
underline="hover"
>
Documentation
</Link>
</Stack>
</Stack>
</Box>
);
};
export default Footer;