File size: 652 Bytes
4460085
5786921
 
 
 
 
 
 
4460085
 
 
 
 
 
 
 
 
 
5786921
4460085
5786921
 
 
 
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
import { Stack, Typography } from "@mui/material";
import Huggingface from "./huggingface/huggingface";
import { SectionBox } from "./boxes";

export default function ExampleComponents() {
  return (
    <>
      <SectionBox>
        <Stack spacing={2}>
          <Typography component="h2" variant="h3" sx={{ textAlign: "center" }}>
            Components
          </Typography>

          <Typography variant="body1">
            Unsure where to begin? Our pre-built components are at your service,
            offering a jumpstart for your ML demo.
          </Typography>
        </Stack>
      </SectionBox>

      <Huggingface />
    </>
  );
}