import React from "react"; import { Box, Typography, IconButton, Tooltip } from "@mui/material"; import OpenInNewIcon from "@mui/icons-material/OpenInNew"; import ShareIcon from "@mui/icons-material/Share"; const ExternalLinks = () => { const handleShare = async () => { try { await navigator.share({ title: "YourBench Demo", text: "Check out this benchmark evaluation on YourBench!", url: window.location.href, }); } catch (err) { console.log("Error sharing:", err); } }; return ( GitHub Dataset Documentation ); }; export default ExternalLinks;