Spaces:
Runtime error
Runtime error
File size: 2,851 Bytes
2f65818 2d85080 2f65818 03f3b10 2f65818 2d85080 2f65818 2d85080 2f65818 2d85080 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 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 |
import {
Card,
CardContent,
CardHeader,
CardMedia,
Grid,
Link,
List,
ListItem,
ListItemIcon,
ListItemText,
Table,
TableBody,
TableCell,
TableRow,
Typography,
} from "@mui/material";
import { DividerBox, SectionBox } from "./base/boxes";
import { DynamicFeed, PrecisionManufacturing } from "@mui/icons-material";
import theme from "@/lib/theme";
export default function Examples() {
return (
<>
<DividerBox />
<SectionBox>
<Typography component="h3" variant="h2">
Example Games
</Typography>
<Typography variant="body1">
We re-created some of our favorite games! You want to share your game with the
community? Then head over to our{" "}
<Link
href="https://discord.com/invite/m3TBB9XEkb"
target="_blank"
rel="noopener"
sx={{ verticalAlign: "bottom" }}
>
<img
style={{ verticalAlign: "bottom" }}
src="https://img.shields.io/discord/1091306623819059300?color=7289da&label=Discord&logo=discord&logoColor=fff&style=for-the-badge"
/>
</Link>
, post it in #showcase and we might add it to this section as well!
</Typography>
</SectionBox>
<Grid container>
<Grid item sm={4}>
<Card>
<CardHeader
title="Space Invaders Extreme"
subheader={
<>
by{" "}
<Link href="https://nerddis.co" target="_blank" rel="noopener">
NERDDISCO
</Link>
</>
}
></CardHeader>
<CardMedia
component="img"
image="img/space_invaders_extreme.jpg"
height="256"
/>
<CardContent>
<Table>
<TableBody>
<TableRow>
<TableCell variant="head">Play</TableCell>
<TableCell>
{" "}
<Link
href="https://codesandbox.io/s/space-invaders-extreme-7xhp4v"
target="_blank"
rel="noopener"
>
on CodeSandbox
</Link>
</TableCell>
</TableRow>
<TableRow>
<TableCell variant="head">Model</TableCell>
<TableCell>GPT 3.5 Turbo</TableCell>
</TableRow>
<TableRow>
<TableCell variant="head">Iterations</TableCell>
<TableCell>20</TableCell>
</TableRow>
<TableRow>
<TableCell variant="head">Controls</TableCell>
<TableCell>
Keyboard: Movement (Arrow Left, Arrow right), Shooting
(Space), Restart (R)
</TableCell>
</TableRow>
<TableRow>
<TableCell variant="head">Hints</TableCell>
<TableCell>
The bigger the window, the easier it gets to play
</TableCell>
</TableRow>
</TableBody>
</Table>
</CardContent>
</Card>
</Grid>
</Grid>
<DividerBox />
</>
);
}
|