import React from 'react'; import { Box, Typography, Tab, Tabs, IconButton } from '@mui/material'; import DarkModeOutlinedIcon from '@mui/icons-material/DarkModeOutlined'; import OpenInNewIcon from '@mui/icons-material/OpenInNew'; function Header() { const [value, setValue] = React.useState(0); const handleChange = (event, newValue) => { setValue(newValue); }; return (
🤗
Open LLM Leaderboard Archived Comparing Large Language Models in an open and reproducible way
); } export default Header;