File size: 677 Bytes
f1b3b1d e7abd9e f1b3b1d e7abd9e f1b3b1d e7abd9e f1b3b1d 04f06ea f1b3b1d 15f2c01 f1b3b1d e7abd9e 15f2c01 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 |
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" sx={{ mx: 4 }}>
© 2025 The Fin AI - Open Greek Financial LLM Leaderboard - Made by the Fin AI community.
-{" "}
<Link
href="https://thefin.ai"
target="_blank"
rel="noopener noreferrer"
color="inherit"
>
thefin.ai
</Link>
</Typography>
</Box>
);
};
export default Footer;
|