blob: e5c95d4c22fab31f93cf66d1921cc80a3c0baecb (
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
|
import * as React from 'react';
import styled from 'styled-components';
import { media, colors } from '../variables';
import { Alpha, Lead } from './Typography';
import Container from './Container';
const Main = styled.div`
background-color: ${colors.lightGray};
padding: 6.25rem;
display: flex;
justify-content: space-between;
${media.small`
padding: 2.5rem 1.875rem
display: block;
`};
`;
const Inner = styled.div`
display: flex;
flex-direction: column;
width: 100%;
`;
const Title = styled(Alpha)`
margin-bottom: 2.5rem;
${media.small`margin-bottom: 2.25rem;`};
`;
const Blocks = styled.div`
display: flex;
justify-content: space-between;
${media.small`display: block;`};
`;
const IntroLead = styled(Lead)`
max-width: 25.9375rem;
${media.small`margin-bottom: 1.5625rem;`};
`;
const IntroAside = styled.div`
max-width: 32.5rem;
position: relative;
${media.small`
margin-left: -30px;
width: calc(100% + 60px);
`};
`;
interface IntroProps {
title: string;
children?: React.ReactNode;
}
function Intro(props: IntroProps) {
return (
<Container wide>
<Main>
<Inner>
<Title>{props.title}</Title>
<Blocks>{props.children}</Blocks>
</Inner>
</Main>
</Container>
);
}
export default Intro;
export { IntroLead, IntroAside, Intro };
|