File size: 967 Bytes
38c5e89
945c6bb
 
 
5786921
 
 
 
4460085
38c5e89
 
 
 
945c6bb
 
 
 
 
38c5e89
945c6bb
5786921
 
 
 
 
4460085
 
5786921
 
945c6bb
38c5e89
945c6bb
38c5e89
 
 
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 Head from "next/head";
import Container from "@mui/material/Container";
import Footer from "@/components/footer";
import Title from "@/components/title";
import Huggingface from "@/components/huggingface/huggingface";
import GettingStarted from "@/components/getting-started";
import ExampleComponents from "@/components/example-components";
import { Stack } from "@mui/material";
import { DividerBox } from "@/components/boxes"

export default function Home() {
  return (
    <>
      <Head>
        <title>nextjs-docker-starter</title>
        <link rel="icon" href="/favicon.ico" />
        <meta name="description" content="Next.js in Docker on πŸ€— Spaces" />
      </Head>

      <Container component="main" sx={{ minHeight: "90vh" }}>
        <Stack spacing={4} useFlexGap>
          <Title />

          <GettingStarted />

          <DividerBox />

          <ExampleComponents />
        </Stack>
      </Container>

      <Footer />
    </>
  );
}