Spaces:
Runtime error
Runtime error
File size: 1,562 Bytes
4460085 945c6bb 4460085 945c6bb 4460085 945c6bb 4460085 945c6bb 4460085 945c6bb |
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 53 54 55 56 57 58 59 60 61 62 63 |
import { Button, Link, Paper, Stack, Typography } from "@mui/material";
import { HighlightBox } from "./boxes";
import ContentCopyIcon from "@mui/icons-material/ContentCopy";
export default function Title() {
return (
<Stack
spacing={4}
sx={{
justifyContent: "center",
alignItems: "center",
minHeight: "40vh",
p: 4,
}}
>
<Typography variant="h1" 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>
<HighlightBox>
<Typography variant="h5" component="p">
Run your ML demo with ease in a Next.js/React environment
</Typography>
</HighlightBox>
<Stack gap={2} direction="row">
<Button
startIcon={<ContentCopyIcon />}
variant="contained"
href="https://huggingface.co/spaces/failfast/nextjs-docker-starter?duplicate=true"
target="_blank"
rel="noopener"
color="secondary"
>
Duplicate space
</Button>
<Button
href="https://github.com/failfa-st/nextjs-docker-starter"
target="_blank"
rel="noopener"
>
Contribute on GitHub
</Button>
</Stack>
</Stack>
);
}
|