Display next steps on success page

This commit is contained in:
IshaVenikar 2024-08-09 10:42:21 +05:30
parent 95a2180470
commit 6bcf2bc2c6

View File

@ -73,6 +73,7 @@ const OnboardingSuccess = () => {
}, [cosmosAddress]); }, [cosmosAddress]);
return ( return (
<>
<Box <Box
sx={{ sx={{
display: "flex", display: "flex",
@ -121,6 +122,30 @@ const OnboardingSuccess = () => {
) : '' ) : ''
} }
</Box> </Box>
<Typography variant="h5">Next Steps</Typography>
<Box
display="flex"
flexDirection="column"
alignItems="center"
justifyContent="center"
marginTop={3}
sx={{
border: 1,
borderColor: 'grey.500',
}}
padding={5}
>
<Typography variant="body1" gutterBottom sx={{ p: 2 }}>
For participants, await the start of the stage 1 chain, which will be announced in various social media channels. In the meantime, familiarize yourself with the{' '}
<a href="https://github.com/hyphacoop/loro-testnet/blob/main/docs/publishing-webapps.md" target="_blank" rel="noopener noreferrer">webapp publishing workflow</a>{' '}
as this is the main task you will be participating in.<br />
<br />
For validators, ensure your service provider is running and ready to deploy webapps. Await publication of the laconicd version, genesis file, and peers to the LORO testnet repo, then follow{' '}
<a 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" rel="noopener noreferrer">these instructions</a>{' '}
for joining stage 1 as a validator.
</Typography>
</Box>
</>
); );
}; };