aboutsummaryrefslogtreecommitdiffstats
path: root/packages/dev-tools-pages/ts/components/Hero.tsx
blob: 60f859a552f9aaad95b568a9ba9e0328a60ae026 (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
import * as React from 'react';
import styled from 'styled-components';

import { withContext, Props } from './withContext';
import Button from './Button';
import { Beta } from './Typography';

function Hero(props: Props) {
    const { subtitle, tagline } = props;
    return (
        <StyledHero>
            <Subtitle>{subtitle}</Subtitle>
            <Tagline as="p">{tagline}</Tagline>
            <Button as="a" href="#" large>
                Read the Docs
            </Button>
        </StyledHero>
    );
}

const StyledHero = styled.section`
    margin: 0 auto;
    text-align: center;
    max-width: 590px;
`;

const Subtitle = styled.h2`
    font-size: 3.75rem;
    line-height: 1.16;
    margin-bottom: 1.5rem;
`;

const Tagline = styled(Beta)`
    margin-bottom: 2rem;
`;

export default withContext(Hero);