Xueqing's picture
Update frontend/src/components/Footer/Footer.js
ed6f357 verified
raw
history blame contribute delete
685 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 }}>
© 2025 Clinical NLP Lab - Open Medical LLM Leaderboard - Made by Clinical NLP Lab.
-{" "}
<Link
href="https://clinicalnlp.org/"
target="_blank"
rel="noopener noreferrer"
color="inherit"
>
Clinical NLP Lab
</Link>
</Typography>
</Box>
);
};
export default Footer;