Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
File size: 1,378 Bytes
970eef1 81e0b0c 970eef1 81e0b0c 970eef1 05964a6 970eef1 603401f 970eef1 81e0b0c 970eef1 603401f 970eef1 603401f 970eef1 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 |
import React from "react";
import { Box, Typography, Link } from "@mui/material";
const Footer = () => {
return (
<Box
component="footer"
sx={{
width: "70%",
margin: "0 auto",
py: 4,
textAlign: "center",
opacity: 0.7,
}}
>
{/* <Typography
variant="body2"
color="text.secondary"
sx={{ maxWidth: "800px", mx: "auto", mt: 2 }}
>
Currently, this is an <b>extremely minimal demo</b>. <br />
To <b>unlock the full capabilities</b>, please visit our{" "}
<Link
href="https://github.com/huggingface/yourbench"
target="_blank"
rel="noopener noreferrer"
color="inherit"
>
<b>GitHub</b>
</Link>
!
</Typography> */}
<Typography variant="body2" color="text.secondary" sx={{ mx: 4 }}>
We keep <b>processed documents</b> for <b>research purposes</b>, to
which you agree by using the space. For a <b>fully private usage</b>,
please duplicate the{" "}
<Link
href="https://huggingface.co/spaces/yourbench/advanced"
target="_blank"
rel="noopener noreferrer"
color="inherit"
>
<b>advanced demo space</b>
</Link>
.
</Typography>
</Box>
);
};
export default Footer;
|