small update
This commit is contained in:
parent
fb145c7531
commit
f1dc322162
@ -48,11 +48,22 @@ export const GamePage = () => {
|
||||
return (
|
||||
<div className={css`
|
||||
min-height: 100vh;
|
||||
`}>
|
||||
<div className={css`
|
||||
margin: auto;
|
||||
`}>
|
||||
<h1>{info.release.manifest.title ?? slug!.split("-").map(word => word[0].toUpperCase()+word.slice(1)).join(" ")}</h1>
|
||||
<h2>By: {info.release.author}</h2>
|
||||
<div className={css`
|
||||
max-width: 512px;
|
||||
`}>
|
||||
<Pico8Console carts={info.release.carts} />
|
||||
<div>By: {info.release.author}</div>
|
||||
<select defaultValue={info.release.version}>
|
||||
</div>
|
||||
<div className={css`
|
||||
display: flex;
|
||||
justify-content: end;
|
||||
`}>
|
||||
Version: <select defaultValue={info.release.version}>
|
||||
{
|
||||
info.versions.map(v => (
|
||||
<option key={v} value={v}>{v}</option>
|
||||
@ -60,5 +71,7 @@ export const GamePage = () => {
|
||||
}
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
)
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user