Finalize (?) sleeves

This commit is contained in:
nickofolas 2022-03-16 17:35:04 -05:00
parent 33ddc2ff24
commit a205f42d88

@ -4,7 +4,7 @@ import {
Box, Box,
Typography, Typography,
Button, Button,
Link Container
} from "@mui/material"; } from "@mui/material";
import { use } from "../../../ui/Context"; import { use } from "../../../ui/Context";
@ -27,25 +27,25 @@ export function SleeveRoot(): React.ReactElement {
return ( return (
<> <>
<Typography variant="h4">Sleeves</Typography> <Container disableGutters maxWidth="md" sx={{ mx: 0 }}>
<Typography> <Typography variant="h4">Sleeves</Typography>
Duplicate Sleeves are MK-V Synthoids (synthetic androids) into which your consciousness has been copied. In <Typography>
other words, these Synthoids contain a perfect duplicate of your mind. Duplicate Sleeves are MK-V Synthoids (synthetic androids) into which your consciousness has been copied. In
<br /> other words, these Synthoids contain a perfect duplicate of your mind.
<br /> <br />
Sleeves can be used to perform different tasks synchronously. <br />
<br /> Sleeves can be used to perform different tasks synchronously.
<br /> <br />
</Typography> <br />
</Typography>
</Container>
<Button onClick={() => setFAQOpen(true)}>FAQ</Button> <Button onClick={() => setFAQOpen(true)}>FAQ</Button>
<Link <Button href="https://bitburner.readthedocs.io/en/latest/advancedgameplay/sleeves.html#duplicate-sleeves" target="_blank">
target="_blank" Wiki Documentation
href="https://bitburner.readthedocs.io/en/latest/advancedgameplay/sleeves.html#duplicate-sleeves" </Button>
> <Box display="grid" sx={{ gridTemplateColumns: 'repeat(2, 1fr)', mt: 1 }}>
<Typography> Documentation</Typography>
</Link>
<Box display="grid" sx={{ gridTemplateColumns: 'repeat(2, 1fr)' }}>
{player.sleeves.map((sleeve, i) => ( {player.sleeves.map((sleeve, i) => (
<SleeveElem key={i} rerender={rerender} sleeve={sleeve} /> <SleeveElem key={i} rerender={rerender} sleeve={sleeve} />
))} ))}