import React from "react"; import { Box, Typography, Link, Stack } from "@mui/material"; const Footer = () => { const currentYear = new Date().getFullYear(); return ( © {currentYear} The Fin AI - Open Financial LLM Leaderboard Home GitHub Documentation ); }; export default Footer;