Spaces:
Runtime error
Runtime error
File size: 1,150 Bytes
2f65818 2d85080 3516ec6 2f65818 |
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 40 41 42 43 44 45 46 47 |
import { Button, Link, Paper, Stack, Typography } from "@mui/material";
import { HighlightBox } from "./base/boxes";
import ContentCopyIcon from "@mui/icons-material/ContentCopy";
export default function Title() {
return (
<Stack
spacing={4}
sx={{
justifyContent: "center",
alignItems: "center",
minHeight: "40vh",
p: 4,
}}
>
<Typography variant="h1" component="h1" sx={{ fontSize: { xs: "2em", md: "5em" } }}>
2D GameCreator
</Typography>
<HighlightBox>
<Typography variant="h5" component="p">
text-to-game using OpenAI GPT 3.5 / GPT 4
</Typography>
</HighlightBox>
<Stack gap={2} direction="row">
<Link
href="https://discord.com/invite/m3TBB9XEkb"
target="_blank"
rel="noopener"
sx={{ alignSelf: "end" }}
>
<img src="https://img.shields.io/discord/1091306623819059300?color=7289da&label=Discord&logo=discord&logoColor=fff&style=for-the-badge" />
</Link>
<Button
href="https://github.com/failfa-st/nextjs-docker-starter"
target="_blank"
rel="noopener"
>
Contribute on GitHub
</Button>
</Stack>
</Stack>
);
}
|