tfrere's picture
update footer year and update dark mode behavior
60de3d1
raw
history blame
698 Bytes
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 }}>
© {new Date().getFullYear()} Hugging Face - Leaderboards on the hub -
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;