aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website/ts/components/onboarding/congrats_onboarding_step.tsx
diff options
context:
space:
mode:
authorfragosti <francesco.agosti93@gmail.com>2018-06-16 09:27:23 +0800
committerfragosti <francesco.agosti93@gmail.com>2018-06-16 09:34:57 +0800
commit8a76fdc126c4e8d8b388d9e50bbc7fb8c7862186 (patch)
tree85266d3d3fc588100b134e1a82de3c82ab6773f9 /packages/website/ts/components/onboarding/congrats_onboarding_step.tsx
parent433f830cf33f6383e83cca5e08b1f58bc18a0828 (diff)
downloaddexon-sol-tools-8a76fdc126c4e8d8b388d9e50bbc7fb8c7862186.tar.gz
dexon-sol-tools-8a76fdc126c4e8d8b388d9e50bbc7fb8c7862186.tar.zst
dexon-sol-tools-8a76fdc126c4e8d8b388d9e50bbc7fb8c7862186.zip
Finish last onboarding step
Diffstat (limited to 'packages/website/ts/components/onboarding/congrats_onboarding_step.tsx')
-rw-r--r--packages/website/ts/components/onboarding/congrats_onboarding_step.tsx15
1 files changed, 15 insertions, 0 deletions
diff --git a/packages/website/ts/components/onboarding/congrats_onboarding_step.tsx b/packages/website/ts/components/onboarding/congrats_onboarding_step.tsx
new file mode 100644
index 000000000..3a8db8c36
--- /dev/null
+++ b/packages/website/ts/components/onboarding/congrats_onboarding_step.tsx
@@ -0,0 +1,15 @@
+import * as React from 'react';
+import { Container } from 'ts/components/ui/container';
+import { Text } from 'ts/components/ui/text';
+
+export interface CongratsOnboardingStepProps {}
+
+export const CongratsOnboardingStep: React.StatelessComponent<CongratsOnboardingStepProps> = () => (
+ <div className="flex items-center flex-column">
+ <Text>Your wallet is now set up for trading. Use it on any relayer in the 0x ecosystem.</Text>
+ <Container marginTop="25px" marginBottom="15px" className="flex justify-center">
+ <img src="/images/zrx_ecosystem.svg" height="150px" />
+ </Container>
+ <Text>No need to log in. Each relayer automatically detects and connects to your metamask wallet.</Text>
+ </div>
+);