File size: 906 Bytes
d378496
5786921
d378496
 
5786921
 
 
 
 
4460085
d378496
4460085
 
 
 
d378496
 
4460085
 
5786921
4460085
5786921
d378496
 
 
 
 
 
 
 
 
 
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
26
27
28
29
30
31
32
33
34
35
36
import { Box, Stack, Typography } from "@mui/material";
import Huggingface from "./huggingface/huggingface";
import { DividerBox, HighlightBox, SectionBox } from "./base/boxes";
import { UnderConstruction } from "./under-construction";

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

          <Typography variant="body1">
            Unsure where to begin? Our pre-built components offer a jumpstart
            for your ML demo πŸš€
          </Typography>
        </Stack>
      </SectionBox>

      <Huggingface />

      <DividerBox />

      <Stack spacing={4}>
        <HighlightBox>
          <Typography variant="h4">More comming soon!</Typography>
        </HighlightBox>

        <UnderConstruction />
      </Stack>
    </>
  );
}