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 ( <> <Stack gap={5}> <Introduction /> <GameCreator /> </Stack> <Examples /> <Workflow /> <Instructions /> <Footer /> </Container> </> ); }