Anne-Charlotte commited on
Commit
ed28eb4
·
1 Parent(s): 85a555c

QR code added to the getting started page

Browse files
public/assets/reachy-mini-access-point-QR-code.png ADDED

Git LFS Details

  • SHA256: deb7d1a6526187f7513a446e062c7fbd5312943efdf6556aee468fa83d627350
  • Pointer size: 129 Bytes
  • Size of remote file: 1.87 kB
src/pages/GettingStarted.jsx CHANGED
@@ -464,14 +464,34 @@ export default function GettingStarted() {
464
  <Typography fontWeight={600}>Connect to the robot's Wi-Fi</Typography>
465
  </StepLabel>
466
  <StepContent>
467
- <Box sx={{ bgcolor: 'background.alt', p: 2, borderRadius: 2, mb: 1 }}>
468
- <Typography variant="body2">
469
- <strong>Network:</strong> <code>reachy-mini-ap</code>
470
- </Typography>
471
- <Typography variant="body2">
472
- <strong>Password:</strong> <code>reachy-mini</code>
473
- </Typography>
474
- </Box>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
475
  </StepContent>
476
  </Step>
477
  <Step active completed={false}>
 
464
  <Typography fontWeight={600}>Connect to the robot's Wi-Fi</Typography>
465
  </StepLabel>
466
  <StepContent>
467
+ <Grid container columnSpacing={2.5} rowSpacing={2} alignItems="center">
468
+ <Grid
469
+ size={{ xs: 12, md: 6 }}
470
+ sx={{
471
+ flexBasis: { md: '110px', xs: '100%' },
472
+ maxWidth: { md: '110px', xs: '100%' },
473
+ display: 'flex',
474
+ alignItems: 'center',
475
+ }}
476
+ >
477
+ <Box
478
+ component="img"
479
+ src="/assets/reachy-mini-access-point-QR-code.png"
480
+ alt="Reachy Mini access point QR code"
481
+ sx={{ height: 100, width: 'auto', display: 'block' }}
482
+ />
483
+ </Grid>
484
+ <Grid size={{ xs: 12, md: 6 }} sx={{ display: 'flex', alignItems: 'center' }}>
485
+ <Box sx={{ bgcolor: 'background.alt', p: 2, borderRadius: 2, mb: 1 }}>
486
+ <Typography variant="body2">
487
+ <strong>Network:</strong> <code>reachy-mini-ap</code>
488
+ </Typography>
489
+ <Typography variant="body2">
490
+ <strong>Password:</strong> <code>reachy-mini</code>
491
+ </Typography>
492
+ </Box>
493
+ </Grid>
494
+ </Grid>
495
  </StepContent>
496
  </Step>
497
  <Step active completed={false}>