blob: 46e2ca6d9321ef6fb40ad8f1ee079e703f9c9f71 (
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
|
import * as React from 'react';
import styled from 'styled-components';
import {addFadeInAnimation} from 'ts/@next/constants/animations';
interface Props {
title: string;
isLargeTitle?: boolean;
isFullWidth?: boolean;
description: string;
figure?: React.ReactNode;
actions?: React.ReactNode;
}
export const Hero = (props: Props) => (
<Section>
<Wrap isCentered={!props.figure} isFullWidth={props.isFullWidth}>
{props.figure &&
<Content width="400px">
{props.figure}
</Content>
}
<Content width={props.figure ? '546px' : '678px'}>
<Title isLarge={props.isLargeTitle}>
{props.title}
</Title>
<Description>
{props.description}
</Description>
{props.actions &&
<ButtonWrap>
{props.actions}
</ButtonWrap>
}
</Content>
</Wrap>
</Section>
);
const Section = styled.section`
padding: 120px 0;
@media (max-width: 768px) {
padding: 60px 0;
}
`;
const Wrap = styled.div<{ isCentered?: boolean; isFullWidth?: boolean }>`
width: calc(100% - 60px);
margin: 0 auto;
@media (min-width: 768px) {
max-width: ${props => !props.isFullWidth ? '895px' : '1136px'};
flex-direction: row-reverse;
display: flex;
align-items: center;
text-align: ${props => props.isCentered && 'center'};
justify-content: ${props => props.isCentered ? 'center' : 'space-between'};
}
@media (max-width: 768px) {
text-align: center;
}
`;
const Title = styled.h1<{ isLarge?: any }>`
font-size: ${props => props.isLarge ? '80px' : '50px'};
font-weight: 300;
line-height: 1.1;
margin-bottom: 30px;
${addFadeInAnimation('0.5s')}
@media (max-width: 1024px) {
font-size: 60px;
}
@media (max-width: 768px) {
font-size: 46px;
}
`;
const Description = styled.p`
font-size: 22px;
line-height: 31px;
padding: 0;
margin-bottom: 50px;
color: rgba(255, 255, 255, 0.75);
${addFadeInAnimation('0.5s', '0.15s')}
@media (max-width: 1024px) {
margin-bottom: 30px;
}
`;
const Content = styled.div<{ width: string }>`
width: 100%;
@media (min-width: 768px) {
max-width: ${props => props.width};
}
`;
const ButtonWrap = styled.div`
display: inline-flex;
align-items: center;
* + * {
margin-left: 12px;
}
> *:nth-child(1) {
${addFadeInAnimation('0.6s', '0.3s')}
}
> *:nth-child(2) {
${addFadeInAnimation('0.6s', '0.4s')}
}
`;
|