foundry-component-library 0.0.13 → 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/components/AgencyNumbers/index.tsx +12 -1
- package/lib/components/AgencyNumbers/styles.module.scss +32 -6
- package/lib/components/Awards/index.tsx +27 -8
- package/lib/components/Awards/styles.module.scss +40 -5
- package/lib/components/CaseStudyTeaser/styles.module.scss +11 -4
- package/lib/components/ContactTeaser/index.tsx +6 -2
- package/lib/components/ContactTeaser/styles.module.scss +14 -5
- package/lib/components/Container/index.tsx +8 -1
- package/lib/components/Container/styles.module.scss +9 -3
- package/lib/components/Footer/styles.module.scss +56 -8
- package/lib/components/Hero/index.tsx +13 -3
- package/lib/components/Hero/styles.module.scss +38 -1
- package/lib/components/HubsAccordion/index.tsx +1 -1
- package/lib/components/HubsAccordion/styles.module.scss +87 -6
- package/lib/components/LargeText/styles.module.scss +14 -2
- package/lib/components/LogoSection/styles.module.scss +6 -5
- package/lib/components/Management/styles.module.scss +7 -2
- package/lib/components/NewsTeaser/index.tsx +21 -3
- package/lib/components/NewsTeaser/styles.module.scss +53 -12
- package/lib/components/OfficesTeaser/index.tsx +2 -1
- package/lib/components/OfficesTeaser/styles.module.scss +4 -0
- package/lib/components/PartnerNetwork/styles.module.scss +14 -0
- package/lib/components/QuoteSection/styles.module.scss +16 -0
- package/lib/components/ServiceHubsTeaser/index.tsx +1 -1
- package/lib/components/ServiceHubsTeaser/styles.module.scss +17 -4
- package/lib/components/TeamBenefits/index.tsx +1 -1
- package/lib/components/TeamBenefits/styles.module.scss +20 -0
- package/lib/components/TeamPhotos/index.tsx +17 -2
- package/lib/components/TeamPhotos/styles.module.scss +39 -1
- package/lib/components/TextSection/styles.module.scss +12 -2
- package/lib/components/_variables.scss +5 -0
- package/lib/components/case/Content/Numbers/styles.module.scss +4 -0
- package/lib/components/case/Other/index.tsx +23 -8
- package/lib/components/case/Other/styles.module.scss +27 -10
- package/lib/components/case/ShareButton/styles.module.scss +4 -0
- package/lib/components/case/Top/styles.module.scss +36 -5
- package/lib/components/cases/Items/styles.module.scss +10 -0
- package/lib/components/cases/Top/styles.module.scss +7 -2
- package/lib/components/contact/Offices/index.tsx +15 -1
- package/lib/components/contact/Offices/styles.module.scss +20 -6
- package/lib/queries/getHomePage.ts +12 -0
- package/lib/queries/getPeoplePage.ts +14 -0
- package/package.json +1 -1
- package/dist/index.js +0 -82
|
@@ -5,6 +5,12 @@
|
|
|
5
5
|
font-family: $font-secondary;
|
|
6
6
|
margin-bottom: 55px;
|
|
7
7
|
color: $color-brown;
|
|
8
|
+
|
|
9
|
+
@media #{$QUERY-sm} {
|
|
10
|
+
font-size: 28px;
|
|
11
|
+
margin-bottom: 24px;
|
|
12
|
+
padding: 0 20px;
|
|
13
|
+
}
|
|
8
14
|
}
|
|
9
15
|
|
|
10
16
|
.filterBtns {
|
|
@@ -37,6 +43,11 @@
|
|
|
37
43
|
flex-wrap: wrap;
|
|
38
44
|
gap: 16px;
|
|
39
45
|
margin-bottom: 64px;
|
|
46
|
+
|
|
47
|
+
@media #{$QUERY-sm} {
|
|
48
|
+
flex-wrap: nowrap;
|
|
49
|
+
margin-bottom: 32px;
|
|
50
|
+
}
|
|
40
51
|
}
|
|
41
52
|
|
|
42
53
|
.person {
|
|
@@ -44,9 +55,22 @@
|
|
|
44
55
|
padding-bottom: 16px;
|
|
45
56
|
text-align: center;
|
|
46
57
|
color: $color-brown;
|
|
58
|
+
flex-shrink: 0;
|
|
47
59
|
|
|
48
60
|
@media screen and (max-width: $screen-sm) {
|
|
49
|
-
width:
|
|
61
|
+
width: 245px;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
&:first-child {
|
|
65
|
+
@media #{$QUERY-sm} {
|
|
66
|
+
margin-left: 20px;
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
&:last-child {
|
|
71
|
+
@media #{$QUERY-sm} {
|
|
72
|
+
margin-right: 20px;
|
|
73
|
+
}
|
|
50
74
|
}
|
|
51
75
|
}
|
|
52
76
|
|
|
@@ -57,8 +81,14 @@
|
|
|
57
81
|
position: relative;
|
|
58
82
|
margin-bottom: 16px;
|
|
59
83
|
|
|
84
|
+
@media #{$QUERY-sm} {
|
|
85
|
+
width: 100%;
|
|
86
|
+
height: 245px;
|
|
87
|
+
}
|
|
88
|
+
|
|
60
89
|
img {
|
|
61
90
|
object-fit: contain;
|
|
91
|
+
pointer-events: none;
|
|
62
92
|
}
|
|
63
93
|
|
|
64
94
|
&.loading {
|
|
@@ -71,9 +101,17 @@
|
|
|
71
101
|
font-weight: 700;
|
|
72
102
|
margin-bottom: 3px;
|
|
73
103
|
white-space: pre-wrap;
|
|
104
|
+
|
|
105
|
+
@media #{$QUERY-sm} {
|
|
106
|
+
white-space: initial;
|
|
107
|
+
}
|
|
74
108
|
}
|
|
75
109
|
|
|
76
110
|
.position {
|
|
77
111
|
font-size: 16px;
|
|
78
112
|
white-space: pre-wrap;
|
|
113
|
+
|
|
114
|
+
@media #{$QUERY-sm} {
|
|
115
|
+
white-space: initial;
|
|
116
|
+
}
|
|
79
117
|
}
|
|
@@ -37,6 +37,8 @@
|
|
|
37
37
|
text-transform: uppercase;
|
|
38
38
|
color: $color-blue;
|
|
39
39
|
margin-bottom: 8px;
|
|
40
|
+
font-size: 16px;
|
|
41
|
+
font-weight: 500;
|
|
40
42
|
|
|
41
43
|
&:last-child {
|
|
42
44
|
margin-bottom: 0;
|
|
@@ -53,14 +55,18 @@
|
|
|
53
55
|
|
|
54
56
|
&.small {
|
|
55
57
|
font-size: 42px;
|
|
58
|
+
|
|
59
|
+
@media #{$QUERY-sm} {
|
|
60
|
+
font-size: 28px;
|
|
61
|
+
}
|
|
56
62
|
}
|
|
57
63
|
|
|
58
64
|
@media #{$QUERY-lg} {
|
|
59
65
|
font-size: 42px;
|
|
60
66
|
}
|
|
61
67
|
|
|
62
|
-
@media
|
|
63
|
-
font-size:
|
|
68
|
+
@media #{$QUERY-sm} {
|
|
69
|
+
font-size: 28px;
|
|
64
70
|
white-space: normal;
|
|
65
71
|
}
|
|
66
72
|
|
|
@@ -72,4 +78,8 @@
|
|
|
72
78
|
.text {
|
|
73
79
|
font-size: 18px;
|
|
74
80
|
color: $color-brown;
|
|
81
|
+
|
|
82
|
+
@media #{$QUERY-sm} {
|
|
83
|
+
font-size: 16px;
|
|
84
|
+
}
|
|
75
85
|
}
|
|
@@ -1,9 +1,11 @@
|
|
|
1
|
-
|
|
1
|
+
"use client";
|
|
2
|
+
import { useRef } from "react";
|
|
2
3
|
import Container from "../../Container";
|
|
3
4
|
import styles from "./styles.module.scss";
|
|
4
5
|
import Arrow from "../../../assets/svg/arrow.svg";
|
|
5
6
|
import { translate } from "../../../utils";
|
|
6
7
|
import { Case, NextImage, NextLink } from "../../../types";
|
|
8
|
+
import useDrag from "../../../hooks/useDrag";
|
|
7
9
|
|
|
8
10
|
function Other({
|
|
9
11
|
cases,
|
|
@@ -14,17 +16,30 @@ function Other({
|
|
|
14
16
|
Link: NextLink;
|
|
15
17
|
Image: NextImage;
|
|
16
18
|
}) {
|
|
19
|
+
const sectionRef = useRef(null);
|
|
20
|
+
const { handleMouseDown, handleMouseMove, handleMouseUp, dragStyle } =
|
|
21
|
+
useDrag(sectionRef);
|
|
22
|
+
|
|
17
23
|
if (!cases) return;
|
|
18
24
|
|
|
19
25
|
return (
|
|
20
|
-
<Container>
|
|
26
|
+
<Container noMobilePadding>
|
|
21
27
|
<div className={styles.other}>
|
|
22
|
-
<div className={styles.
|
|
23
|
-
|
|
24
|
-
{
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
+
<div className={styles.top}>
|
|
29
|
+
<div className={styles.caption}>{translate("Case Studies")}</div>
|
|
30
|
+
<h3 className={styles.heading}>
|
|
31
|
+
{translate("Success stories.\nWith proven results.")}
|
|
32
|
+
</h3>
|
|
33
|
+
</div>
|
|
34
|
+
<div
|
|
35
|
+
ref={sectionRef}
|
|
36
|
+
className={styles.cases}
|
|
37
|
+
onMouseDown={handleMouseDown}
|
|
38
|
+
onMouseMove={handleMouseMove}
|
|
39
|
+
onMouseUp={handleMouseUp}
|
|
40
|
+
onMouseLeave={handleMouseUp}
|
|
41
|
+
style={dragStyle as React.CSSProperties}
|
|
42
|
+
>
|
|
28
43
|
{cases.map((item) => (
|
|
29
44
|
<div key={item.id} className={styles.case}>
|
|
30
45
|
<Link href={item.uri}>
|
|
@@ -8,7 +8,13 @@
|
|
|
8
8
|
}
|
|
9
9
|
|
|
10
10
|
@media #{$QUERY-sm} {
|
|
11
|
-
padding:
|
|
11
|
+
padding: 32px 0;
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.top {
|
|
16
|
+
@media #{$QUERY-sm} {
|
|
17
|
+
padding: 0 20px;
|
|
12
18
|
}
|
|
13
19
|
}
|
|
14
20
|
|
|
@@ -17,6 +23,10 @@
|
|
|
17
23
|
color: $color-blue;
|
|
18
24
|
text-transform: uppercase;
|
|
19
25
|
margin-bottom: 5px;
|
|
26
|
+
|
|
27
|
+
@media #{$QUERY-sm} {
|
|
28
|
+
font-size: 16px;
|
|
29
|
+
}
|
|
20
30
|
}
|
|
21
31
|
|
|
22
32
|
.heading {
|
|
@@ -25,11 +35,20 @@
|
|
|
25
35
|
font-weight: 400;
|
|
26
36
|
white-space: pre-wrap;
|
|
27
37
|
margin-bottom: 56px;
|
|
38
|
+
|
|
39
|
+
@media #{$QUERY-sm} {
|
|
40
|
+
font-size: 28px;
|
|
41
|
+
margin-bottom: 32px;
|
|
42
|
+
}
|
|
28
43
|
}
|
|
29
44
|
|
|
30
45
|
.buttonWrapper {
|
|
31
46
|
text-align: center;
|
|
32
47
|
padding: 32px;
|
|
48
|
+
|
|
49
|
+
@media #{$QUERY-sm} {
|
|
50
|
+
padding: 0;
|
|
51
|
+
}
|
|
33
52
|
}
|
|
34
53
|
|
|
35
54
|
.button {
|
|
@@ -38,11 +57,10 @@
|
|
|
38
57
|
|
|
39
58
|
.cases {
|
|
40
59
|
display: flex;
|
|
41
|
-
|
|
60
|
+
gap: 20px;
|
|
42
61
|
|
|
43
62
|
@media #{$QUERY-sm} {
|
|
44
|
-
|
|
45
|
-
margin: 0;
|
|
63
|
+
padding: 0 20px;
|
|
46
64
|
}
|
|
47
65
|
}
|
|
48
66
|
|
|
@@ -51,7 +69,8 @@
|
|
|
51
69
|
margin: 0 10px;
|
|
52
70
|
|
|
53
71
|
@media #{$QUERY-sm} {
|
|
54
|
-
|
|
72
|
+
flex-shrink: 0;
|
|
73
|
+
width: 253px;
|
|
55
74
|
margin: 0;
|
|
56
75
|
margin-bottom: 50px;
|
|
57
76
|
}
|
|
@@ -78,6 +97,7 @@
|
|
|
78
97
|
.image {
|
|
79
98
|
width: 100%;
|
|
80
99
|
height: 220px;
|
|
100
|
+
margin-bottom: 24px;
|
|
81
101
|
|
|
82
102
|
img {
|
|
83
103
|
width: 100%;
|
|
@@ -87,10 +107,6 @@
|
|
|
87
107
|
}
|
|
88
108
|
|
|
89
109
|
.texts {
|
|
90
|
-
border-left: solid 1px $color-gray-light;
|
|
91
|
-
border-right: solid 1px $color-gray-light;
|
|
92
|
-
border-bottom: solid 1px $color-gray-light;
|
|
93
|
-
padding: 24px 16px;
|
|
94
110
|
flex-grow: 2;
|
|
95
111
|
display: flex;
|
|
96
112
|
flex-direction: column;
|
|
@@ -108,11 +124,12 @@
|
|
|
108
124
|
justify-content: space-between;
|
|
109
125
|
align-items: center;
|
|
110
126
|
font-size: 20px;
|
|
111
|
-
font-weight:
|
|
127
|
+
font-weight: 500;
|
|
112
128
|
color: $color-blue;
|
|
113
129
|
line-height: 1;
|
|
114
130
|
|
|
115
131
|
path {
|
|
116
132
|
stroke: $color-blue;
|
|
133
|
+
stroke-width: 2px;
|
|
117
134
|
}
|
|
118
135
|
}
|
|
@@ -3,6 +3,10 @@
|
|
|
3
3
|
.wrapper {
|
|
4
4
|
padding: 64px 0;
|
|
5
5
|
color: $color-brown;
|
|
6
|
+
|
|
7
|
+
@media #{$QUERY-sm} {
|
|
8
|
+
padding: 32px 0;
|
|
9
|
+
}
|
|
6
10
|
}
|
|
7
11
|
|
|
8
12
|
.link {
|
|
@@ -35,6 +39,10 @@
|
|
|
35
39
|
color: $color-blue;
|
|
36
40
|
text-transform: uppercase;
|
|
37
41
|
margin-bottom: 5px;
|
|
42
|
+
|
|
43
|
+
@media #{$QUERY-sm} {
|
|
44
|
+
font-size: 16px;
|
|
45
|
+
}
|
|
38
46
|
}
|
|
39
47
|
|
|
40
48
|
.titleWrapper {
|
|
@@ -59,7 +67,7 @@
|
|
|
59
67
|
font-weight: 400;
|
|
60
68
|
|
|
61
69
|
@media #{$QUERY-sm} {
|
|
62
|
-
font-size:
|
|
70
|
+
font-size: 32px;
|
|
63
71
|
}
|
|
64
72
|
}
|
|
65
73
|
|
|
@@ -80,12 +88,11 @@
|
|
|
80
88
|
gap: 0 26px;
|
|
81
89
|
|
|
82
90
|
@media #{$QUERY-sm} {
|
|
83
|
-
|
|
91
|
+
gap: 0 20px;
|
|
84
92
|
}
|
|
85
93
|
}
|
|
86
94
|
|
|
87
95
|
.detail {
|
|
88
|
-
font-size: 14px;
|
|
89
96
|
width: 200px;
|
|
90
97
|
font-size: 18px;
|
|
91
98
|
|
|
@@ -95,7 +102,8 @@
|
|
|
95
102
|
|
|
96
103
|
@media #{$QUERY-sm} {
|
|
97
104
|
margin-bottom: 30px;
|
|
98
|
-
width:
|
|
105
|
+
width: calc(50% - 10px);
|
|
106
|
+
font-size: 14px;
|
|
99
107
|
}
|
|
100
108
|
}
|
|
101
109
|
|
|
@@ -103,27 +111,45 @@
|
|
|
103
111
|
margin-bottom: 10px;
|
|
104
112
|
font-size: 20px;
|
|
105
113
|
text-transform: uppercase;
|
|
114
|
+
|
|
115
|
+
@media #{$QUERY-sm} {
|
|
116
|
+
font-size: 14px;
|
|
117
|
+
font-weight: 500;
|
|
118
|
+
}
|
|
106
119
|
}
|
|
107
120
|
|
|
108
121
|
.awardsWrapper {
|
|
109
122
|
@media #{$QUERY-md} {
|
|
110
123
|
margin-top: 30px;
|
|
111
124
|
}
|
|
125
|
+
|
|
126
|
+
@media #{$QUERY-sm} {
|
|
127
|
+
margin-top: 0;
|
|
128
|
+
}
|
|
112
129
|
}
|
|
113
130
|
|
|
114
131
|
.awards {
|
|
115
132
|
display: flex;
|
|
116
133
|
flex-wrap: wrap;
|
|
117
134
|
gap: 40px;
|
|
135
|
+
|
|
136
|
+
@media #{$QUERY-sm} {
|
|
137
|
+
gap: 16px;
|
|
138
|
+
}
|
|
118
139
|
}
|
|
119
140
|
|
|
120
141
|
.award {
|
|
121
142
|
display: flex;
|
|
143
|
+
|
|
144
|
+
@media #{$QUERY-sm} {
|
|
145
|
+
max-width: 106px;
|
|
146
|
+
}
|
|
122
147
|
}
|
|
123
148
|
|
|
124
149
|
.awardTexts {
|
|
125
150
|
width: auto;
|
|
126
|
-
|
|
151
|
+
width: 200px;
|
|
152
|
+
max-width: 100%;
|
|
127
153
|
flex-shrink: 0;
|
|
128
154
|
margin-right: 20px;
|
|
129
155
|
}
|
|
@@ -134,6 +160,7 @@
|
|
|
134
160
|
flex-shrink: 0;
|
|
135
161
|
position: relative;
|
|
136
162
|
max-height: 100px;
|
|
163
|
+
max-width: 100%;
|
|
137
164
|
|
|
138
165
|
img {
|
|
139
166
|
width: 100%;
|
|
@@ -152,6 +179,10 @@
|
|
|
152
179
|
width: 100%;
|
|
153
180
|
height: 534px;
|
|
154
181
|
|
|
182
|
+
@media #{$QUERY-sm} {
|
|
183
|
+
height: 230px;
|
|
184
|
+
}
|
|
185
|
+
|
|
155
186
|
img {
|
|
156
187
|
object-fit: cover;
|
|
157
188
|
}
|
|
@@ -37,6 +37,7 @@
|
|
|
37
37
|
@media #{$QUERY-sm} {
|
|
38
38
|
width: 100%;
|
|
39
39
|
max-width: 100%;
|
|
40
|
+
margin-bottom: 46px;
|
|
40
41
|
}
|
|
41
42
|
|
|
42
43
|
&:nth-child(4n),
|
|
@@ -92,10 +93,19 @@
|
|
|
92
93
|
transition: color 0.3s;
|
|
93
94
|
margin-bottom: 10px;
|
|
94
95
|
font-weight: 500;
|
|
96
|
+
|
|
97
|
+
@media #{$QUERY-sm} {
|
|
98
|
+
font-size: 18px;
|
|
99
|
+
margin-bottom: 6px;
|
|
100
|
+
}
|
|
95
101
|
}
|
|
96
102
|
|
|
97
103
|
.caption {
|
|
98
104
|
font-size: 22px;
|
|
105
|
+
|
|
106
|
+
@media #{$QUERY-sm} {
|
|
107
|
+
font-size: 16px;
|
|
108
|
+
}
|
|
99
109
|
}
|
|
100
110
|
|
|
101
111
|
.arrowWrapper {
|
|
@@ -7,15 +7,20 @@
|
|
|
7
7
|
|
|
8
8
|
.filterBtns {
|
|
9
9
|
display: flex;
|
|
10
|
-
gap:
|
|
10
|
+
gap: 12px;
|
|
11
11
|
flex-wrap: wrap;
|
|
12
12
|
margin-bottom: 40px;
|
|
13
13
|
padding-bottom: 32px;
|
|
14
|
+
z-index: 7;
|
|
15
|
+
|
|
16
|
+
@media #{$QUERY-sm} {
|
|
17
|
+
margin-bottom: 0;
|
|
18
|
+
}
|
|
14
19
|
}
|
|
15
20
|
|
|
16
21
|
.dropdown {
|
|
17
22
|
position: relative;
|
|
18
|
-
width:
|
|
23
|
+
width: 110px;
|
|
19
24
|
|
|
20
25
|
&.active {
|
|
21
26
|
z-index: 3;
|
|
@@ -1,5 +1,8 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import { useRef } from "react";
|
|
1
3
|
import styles from "./styles.module.scss";
|
|
2
4
|
import { NextImage, OfficeDetails } from "../../../types";
|
|
5
|
+
import useDrag from "../../../hooks/useDrag";
|
|
3
6
|
|
|
4
7
|
function Offices({
|
|
5
8
|
details,
|
|
@@ -28,10 +31,21 @@ function Offices({
|
|
|
28
31
|
newyorkAddress,
|
|
29
32
|
newyorkAddressLink,
|
|
30
33
|
} = details;
|
|
34
|
+
const sectionRef = useRef(null);
|
|
35
|
+
const { handleMouseDown, handleMouseMove, handleMouseUp, dragStyle } =
|
|
36
|
+
useDrag(sectionRef);
|
|
31
37
|
|
|
32
38
|
return (
|
|
33
39
|
<section>
|
|
34
|
-
<div
|
|
40
|
+
<div
|
|
41
|
+
ref={sectionRef}
|
|
42
|
+
className={styles.wrapper}
|
|
43
|
+
onMouseDown={handleMouseDown}
|
|
44
|
+
onMouseMove={handleMouseMove}
|
|
45
|
+
onMouseUp={handleMouseUp}
|
|
46
|
+
onMouseLeave={handleMouseUp}
|
|
47
|
+
style={dragStyle as React.CSSProperties}
|
|
48
|
+
>
|
|
35
49
|
<div className={styles.office}>
|
|
36
50
|
<div className={styles.image}>
|
|
37
51
|
{berlinImage && (
|
|
@@ -3,10 +3,6 @@
|
|
|
3
3
|
.wrapper {
|
|
4
4
|
display: flex;
|
|
5
5
|
justify-content: space-between;
|
|
6
|
-
|
|
7
|
-
@media #{$QUERY-sm} {
|
|
8
|
-
display: block;
|
|
9
|
-
}
|
|
10
6
|
}
|
|
11
7
|
|
|
12
8
|
.office {
|
|
@@ -14,8 +10,20 @@
|
|
|
14
10
|
margin: 0 8px;
|
|
15
11
|
|
|
16
12
|
@media #{$QUERY-sm} {
|
|
17
|
-
width:
|
|
18
|
-
|
|
13
|
+
width: 286px;
|
|
14
|
+
flex-shrink: 0;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
&:first-child {
|
|
18
|
+
@media #{$QUERY-sm} {
|
|
19
|
+
margin-left: 20px;
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
&:last-child {
|
|
24
|
+
@media #{$QUERY-sm} {
|
|
25
|
+
margin-right: 20px;
|
|
26
|
+
}
|
|
19
27
|
}
|
|
20
28
|
}
|
|
21
29
|
|
|
@@ -25,6 +33,12 @@
|
|
|
25
33
|
position: relative;
|
|
26
34
|
background: $color-gray;
|
|
27
35
|
margin-bottom: 30px;
|
|
36
|
+
-webkit-user-drag: none;
|
|
37
|
+
user-select: none;
|
|
38
|
+
-moz-user-select: none;
|
|
39
|
+
-webkit-user-select: none;
|
|
40
|
+
-ms-user-select: none;
|
|
41
|
+
pointer-events: none;
|
|
28
42
|
|
|
29
43
|
@media #{$QUERY-sm} {
|
|
30
44
|
margin-bottom: 15px;
|
|
@@ -53,6 +53,12 @@ type HomePage = {
|
|
|
53
53
|
number?: string;
|
|
54
54
|
text?: string;
|
|
55
55
|
}>;
|
|
56
|
+
heroImage?: {
|
|
57
|
+
sourceUrl: string;
|
|
58
|
+
};
|
|
59
|
+
heroHeading?: string;
|
|
60
|
+
heroButtonText?: string;
|
|
61
|
+
heroButtonHref?: string;
|
|
56
62
|
newsCaption?: string;
|
|
57
63
|
newsHeading?: string;
|
|
58
64
|
newsText?: string;
|
|
@@ -146,6 +152,12 @@ export default async function getHomePage({
|
|
|
146
152
|
number
|
|
147
153
|
text
|
|
148
154
|
}
|
|
155
|
+
heroImage {
|
|
156
|
+
sourceUrl
|
|
157
|
+
}
|
|
158
|
+
heroHeading
|
|
159
|
+
heroButtonText
|
|
160
|
+
heroButtonHref
|
|
149
161
|
newsCaption
|
|
150
162
|
newsHeading
|
|
151
163
|
newsText
|
|
@@ -21,6 +21,10 @@ type PeoplePage = {
|
|
|
21
21
|
quoteName?: string;
|
|
22
22
|
quotePosition?: string;
|
|
23
23
|
quoteText?: string;
|
|
24
|
+
heroImage?: {
|
|
25
|
+
sourceUrl: string;
|
|
26
|
+
};
|
|
27
|
+
heroHeading?: string;
|
|
24
28
|
};
|
|
25
29
|
};
|
|
26
30
|
contactPage: {
|
|
@@ -31,18 +35,21 @@ type PeoplePage = {
|
|
|
31
35
|
berlinText?: string;
|
|
32
36
|
berlinEmail?: string;
|
|
33
37
|
berlinPhone?: string;
|
|
38
|
+
berlinAddress?: string;
|
|
34
39
|
zurichImage?: {
|
|
35
40
|
sourceUrl: string;
|
|
36
41
|
};
|
|
37
42
|
zurichText?: string;
|
|
38
43
|
zurichEmail?: string;
|
|
39
44
|
zurichPhone?: string;
|
|
45
|
+
zurichAddress?: string;
|
|
40
46
|
newyorkImage?: {
|
|
41
47
|
sourceUrl: string;
|
|
42
48
|
};
|
|
43
49
|
newyorkText?: string;
|
|
44
50
|
newyorkEmail?: string;
|
|
45
51
|
newyorkPhone?: string;
|
|
52
|
+
newyorkAddress?: string;
|
|
46
53
|
};
|
|
47
54
|
};
|
|
48
55
|
};
|
|
@@ -81,6 +88,10 @@ export default async function getContactPage({
|
|
|
81
88
|
quoteName
|
|
82
89
|
quotePosition
|
|
83
90
|
quoteText
|
|
91
|
+
heroImage {
|
|
92
|
+
sourceUrl
|
|
93
|
+
}
|
|
94
|
+
heroHeading
|
|
84
95
|
}
|
|
85
96
|
}
|
|
86
97
|
contactPage: page(id: "contact", idType: URI) {
|
|
@@ -91,18 +102,21 @@ export default async function getContactPage({
|
|
|
91
102
|
berlinText
|
|
92
103
|
berlinEmail
|
|
93
104
|
berlinPhone
|
|
105
|
+
berlinAddress
|
|
94
106
|
zurichImage {
|
|
95
107
|
sourceUrl
|
|
96
108
|
}
|
|
97
109
|
zurichText
|
|
98
110
|
zurichEmail
|
|
99
111
|
zurichPhone
|
|
112
|
+
zurichAddress
|
|
100
113
|
newyorkImage {
|
|
101
114
|
sourceUrl
|
|
102
115
|
}
|
|
103
116
|
newyorkText
|
|
104
117
|
newyorkEmail
|
|
105
118
|
newyorkPhone
|
|
119
|
+
newyorkAddress
|
|
106
120
|
}
|
|
107
121
|
}
|
|
108
122
|
}
|