copy: fix role names

This commit is contained in:
zramsay 2024-08-10 18:31:06 -04:00 committed by Nabarun
parent 3fe0576f34
commit e6fa6aabd7
3 changed files with 12 additions and 7 deletions

View File

@ -44,12 +44,12 @@ const SelectRoleCard = ({ handleAccept, handleRoleChange }: { handleAccept: () =
<FormControlLabel <FormControlLabel
value={Role.Validator} value={Role.Validator}
control={<Radio />} control={<Radio />}
label="Validator" label="Validator / Service Provider"
/> />
<FormControlLabel <FormControlLabel
value={Role.Participant} value={Role.Participant}
control={<Radio />} control={<Radio />}
label="Participant" label="App Publisher"
/> />
</RadioGroup> </RadioGroup>
</FormControl> </FormControl>

View File

@ -55,8 +55,13 @@ const LandingPage = () => {
setIsDisabled(false); setIsDisabled(false);
}} }}
/> />
<Box m={2} display="flex" justifyContent="center"> <Box m={2} display="flex" justifyContent="center" gap={2}>
<Button variant="outlined" color="primary" disabled={isDisabled}> <Button
variant="outlined"
color="primary"
sx={{ color: "text.primary" }}
disabled={isDisabled}
>
<a <a
href="/TermsAndConditions.pdf" href="/TermsAndConditions.pdf"
download download

View File

@ -148,7 +148,7 @@ const OnboardingSuccess = () => {
padding={5} padding={5}
> >
<Typography variant="body1" gutterBottom sx={{ p: 2 }}> <Typography variant="body1" gutterBottom sx={{ p: 2 }}>
For participants, await the start of the stage 1 chain, which will be For app publishers, await the start of the stage 1 chain, which will be
announced in various social media channels. In the meantime, announced in various social media channels. In the meantime,
familiarize yourself with the{" "} familiarize yourself with the{" "}
<a <a
@ -163,7 +163,7 @@ const OnboardingSuccess = () => {
<br /> <br />
For validators, ensure your service provider is running and ready to For validators, ensure your service provider is running and ready to
deploy webapps. Await publication of the laconicd version, genesis deploy webapps. Await publication of the laconicd version, genesis
file, and peers to the LORO testnet repo, then follow{" "} file, and peer info to the LORO testnet repo, then follow{" "}
<a <a
href="https://git.vdb.to/cerc-io/testnet-laconicd-stack/src/branch/main/testnet-onboarding-validator.md#join-as-a-validator-on-stage1" href="https://git.vdb.to/cerc-io/testnet-laconicd-stack/src/branch/main/testnet-onboarding-validator.md#join-as-a-validator-on-stage1"
target="_blank" target="_blank"
@ -171,7 +171,7 @@ const OnboardingSuccess = () => {
> >
these instructions these instructions
</a>{" "} </a>{" "}
for joining stage 1 as a validator. for joining stage 1 as a validator/service provider.
</Typography> </Typography>
</Box> </Box>
</> </>