Spaces:
Runtime error
Runtime error
File size: 881 Bytes
a86df80 9d1931d 2f65818 2d85080 2f65818 2d85080 6c2bcb4 a86df80 9d1931d 2f65818 6c2bcb4 2f65818 6c2bcb4 2f65818 9d1931d 6c2bcb4 2f65818 6c2bcb4 2d85080 2f65818 2d85080 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 37 38 39 |
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 UnderTheHood from "@/components/UnderTheHood";
import Examples from "@/components/Examples";
import GameCreator from "@/components/GameCreator";
import HowToUse from "@/components/HowToUse";
import Troubleshooting from "@/components/Troubleshooting";
export default function Home() {
return (
<>
<CssBaseline />
<Container sx={{ maxWidth: { xl: "1536px", md: "100%" } }}>
<Title />
<Stack gap={5}>
<Introduction />
<GameCreator />
</Stack>
<Examples />
<HowToUse />
<UnderTheHood />
<Troubleshooting />
<Footer />
</Container>
</>
);
}
|