NERDDISCO's picture
feat: everything
2f65818
raw
history blame
796 Bytes
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>
</>
);
}