NERDDISCO's picture
feat: added getting-started, huggingface summarization, boxes
5786921
raw
history blame
732 Bytes
import { Link, Typography } from "@mui/material";
import { Box } from "@mui/material";
export default function Title() {
return (
<Box
sx={{
display: "flex",
justifyContent: "center",
alignItems: "center",
minHeight: "20vh",
}}
>
<Typography variant="h2" component="h1">
{" "}
<Link
href="https://nextjs.org"
target="_blank"
rel="noopener noreferrer"
>
Next.js
</Link>{" "}
on πŸ€—{" "}
<Link
href="https://huggingface.co/spaces"
target="_blank"
rel="noopener noreferrer"
>
Spaces
</Link>
</Typography>
</Box>
);
}