@@ -8,6 +8,7 @@ import DefaultLayout from 'components/layouts/DefaultLayout'
88import Hero from 'components/Hero'
99import Container from 'components/Container'
1010import HelmetPlus from 'components/HelmetPlus'
11+ import { FaAndroid , FaApple , FaJs } from 'react-icons/fa'
1112
1213import Text from 'atoms/Text'
1314import H3 from 'atoms/H3'
@@ -24,12 +25,15 @@ const HeroLayout = styled.div`
2425 grid-gap: ${ spacing . tiny } ;
2526`
2627
27- const InstallCTA = styled . div `
28- margin-top: ${ spacing . medium } ;
29- display: grid;
30- grid-auto-flow: dense;
31- grid-template-columns: max-content;
32- grid-gap: ${ spacing . small } ;
28+ const HeroButtonLayout = styled . div `
29+ display: flex;
30+ flex-direction: row;
31+ flex-wrap: wrap;
32+ `
33+
34+ const HeroButtonItem = styled . div `
35+ margin-right: ${ spacing . small } ;
36+ margin-bottom: ${ spacing . small } ;
3337`
3438
3539const PreviewLayout = styled . div `
@@ -98,13 +102,23 @@ const SLPPage = ({ location, data }: Props) => (
98102 < H3 background thin >
99103 Secure Tokens on Bitcoin Cash
100104 </ H3 >
101- < InstallCTA >
102- < Text background > INSTALL VIA NPM</ Text >
103- < Code language = "bash" > { `npm install slp-sdk --global` } </ Code >
104- < StyledLink to = "/slp/docs/js/getting-started" >
105- < Button round > Start Here</ Button >
106- </ StyledLink >
107- </ InstallCTA >
105+ < HeroButtonLayout >
106+ < HeroButtonItem >
107+ < StyledLink to = "/slp/docs/js/getting-started" >
108+ < FaJs />
109+ </ StyledLink >
110+ </ HeroButtonItem >
111+ < HeroButtonItem >
112+ < StyledLink to = "/slp/docs/ios/getting-started" >
113+ < FaAndroid />
114+ </ StyledLink >
115+ </ HeroButtonItem >
116+ < HeroButtonItem >
117+ < StyledLink to = "/slp/docs/android/getting-started" >
118+ < FaApple />
119+ </ StyledLink >
120+ </ HeroButtonItem >
121+ </ HeroButtonLayout >
108122 </ HeroLayout >
109123 </ Hero >
110124 < Container >
0 commit comments