import React from "react"; import { Box, Typography, Link } from "@mui/material"; import HFLogo from "./Logo/HFLogo"; const Intro = () => { const handleLogoClick = () => { window.history.replaceState(null, "", "/"); window.location.reload(); }; return ( Yourbench Demo YourBench is an open-source framework for generating{" "} domain-specific benchmarks in a zero-shot manner. It aims to keep your large language models on their toes—even as new data sources, domains, and knowledge demands evolve. Currently, this is an extremely minimal demo.
To unlock the full capabilities, please visit our{" "} GitHub !
); }; export default Intro;