aboutsummaryrefslogtreecommitdiffstats
path: root/packages/dev-tools-pages/ts/components/call_to_action.tsx
blob: 2a58d8fca1bdc2800e5d4408b5807dcb917d99e9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
import * as React from 'react';
import styled from 'styled-components';

import { ContextInterface, ThemeContext } from 'ts/context';

import { Button } from './button';

const CallToAction: React.StatelessComponent<ContextInterface> = ({ children }) => (
    <ThemeContext.Consumer>
        {({ docLink }: ContextInterface) => (
            <StyledCallToAction>
                <CallToActionContainer>
                    <Button as="a" href={docLink} target="_blank" large={true}>
                        Read the Docs
                    </Button>
                </CallToActionContainer>
                {navigator.userAgent !== 'ReactSnap' ? children : null}
            </StyledCallToAction>
        )}
    </ThemeContext.Consumer>
);

const StyledCallToAction = styled.section`
    text-align: center;
    padding-top: 0;
    padding-bottom: 1rem;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    min-height: min-content;
    max-height: 37.5rem;
    height: 20vh;
    position: relative;
`;

const CallToActionContainer = styled.div`
    margin: 0 auto;
    max-width: 590px;
`;

export { CallToAction };