File size: 922 Bytes
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
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: "50vh",
      }}
    >
      <Typography variant="h2" component="h1">
        {" "}
        <Link
          href="https://nextjs.org"
          target="_blank"
          rel="noopener noreferrer"
        >
          Next.js
        </Link>{" "}
        in{" "}
        <Link
          href="https://www.docker.com"
          target="_blank"
          rel="noopener noreferrer"
        >
          Docker
        </Link>{" "}
        on πŸ€—{" "}
        <Link
          href="https://huggingface.co/spaces"
          target="_blank"
          rel="noopener noreferrer"
        >
          Spaces
        </Link>
        !
      </Typography>
    </Box>
  );
}