aboutsummaryrefslogtreecommitdiffstats
path: root/packages/dev-tools-pages/ts/components/Intro.tsx
blob: 7a30d05c72721b65619deccea1c853917693512a (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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
import * as React from 'react';
import styled from 'styled-components';
import { media, colors } from '../variables';

import { Alpha, Lead } from './Typography';
import Container from './Container';
import Breakout from './Breakout';

const Main = styled.div`
    background-color: ${colors.lightGray};
    padding: 6.25rem;
    display: flex;
    justify-content: space-between;

    ${media.large`
        padding: 2.5rem 1.875rem
    `};
    ${media.medium`
        display: block;     
    `};
`;

const Title = styled(Alpha)`
    margin-bottom: 2.5rem;

    ${media.medium`margin-bottom: 2.25rem;`};
`;

const StyledIntroLead = styled(Lead)`
    max-width: 25.9375rem;
    margin-right: 2rem;
    ${media.medium`
        max-width: 100%;
        margin-bottom: 1.5625rem;
    `};
`;

const StyledIntroAside = styled.div`
    max-width: 32.5rem;
    position: relative;
    ${media.medium`
        max-width: 100%;
    `};
`;

interface IntroProps {
    children?: React.ReactNode;
}

interface IntroLeadProps {
    title: string;
    children?: React.ReactNode;
}

function IntroLead(props: IntroLeadProps) {
    return (
        <StyledIntroLead as="div">
            <Title>{props.title}</Title>
            {props.children}
        </StyledIntroLead>
    );
}

function IntroAside(props: IntroProps) {
    return (
        <Breakout>
            <StyledIntroAside>{props.children}</StyledIntroAside>
        </Breakout>
    );
}

function Intro(props: IntroProps) {
    return (
        <Container wide>
            <Main>{props.children}</Main>
        </Container>
    );
}

export default Intro;
export { IntroLead, IntroAside, Intro };