Merge branch 'rd-hn.create-pair-device-page' of https://github.com/nimbus-gui/nimbus-gui into rd-hn.create-pair-device-page

This commit is contained in:
Hristo Nedelkov 2023-08-16 13:46:43 +03:00
commit b6926866ca

View File

@ -27,31 +27,28 @@ const DeviceSyncStatus = () => {
]} ]}
/> />
</Stack> </Stack>
<div className="container-inner landing-page"> <YStack
<YStack space={'$4'}
space={'$4'} style={{
style={{ justifyContent: 'end',
justifyContent: 'end', alignItems: 'start',
alignItems: 'start', marginBottom: '2rem',
marginBottom: '2rem', maxWidth: '100%',
maxWidth: '100%', }}
}} >
> <NimbusLogo />
<NimbusLogo /> <Titles
<Titles title="Sync Status"
title="Device Health Check" subtitle="Monitor your Validator Client and Beacon Node syncing progression."
subtitle="Configure your device to start Staking on Nimbus" />
isAdvancedSettings={true} <YStack>
/> <SyncStatusCardExecution synced={132432} total={200000} />
<YStack> <SyncStatusCardConsensus synced={149500} total={160000} />
<SyncStatusCardExecution synced={132432} total={200000} />
<SyncStatusCardConsensus synced={149500} total={160000} />
</YStack>
<Stack style={{ marginTop: '1rem' }}>
<Button>Continue</Button>
</Stack>
</YStack> </YStack>
</div> <Stack style={{ marginTop: '1rem' }}>
<Button>Continue</Button>
</Stack>
</YStack>
</PageWrapperShadow> </PageWrapperShadow>
) )
} }