Spaces:
Runtime error
Runtime error
File size: 796 Bytes
a86df80 9d1931d 2f65818 6c2bcb4 a86df80 9d1931d 2f65818 6c2bcb4 2f65818 6c2bcb4 2f65818 9d1931d 6c2bcb4 2f65818 6c2bcb4 2f65818 6c2bcb4 2f65818 9d1931d a86df80 |
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 Stack from "@mui/material/Stack";
import CssBaseline from "@mui/material/CssBaseline";
import { Container } from "@mui/material";
import Footer from "@/components/footer";
import Title from "@/components/title";
import Introduction from "@/components/Introduction";
import Instructions from "@/components/Instructions";
import Examples from "@/components/Examples";
import GameCreator from "@/components/GameCreator";
import Workflow from "@/components/Workflow";
export default function Home() {
return (
<>
<CssBaseline />
<Container sx={{ maxWidth: { xl: "1536px", md: "100%" } }}>
<Title />
<Stack gap={5}>
<Introduction />
<GameCreator />
</Stack>
<Examples />
<Workflow />
<Instructions />
<Footer />
</Container>
</>
);
}
|