@hellobetterdigitalnz/selwynui 0.0.1-22 → 0.0.1-25
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/dist/Components/DataDisplay/ChatItenaryBlock/ChatItenaryBlock.d.ts +3 -0
- package/dist/Components/DataDisplay/ChatItenaryBlock/ChatItenaryBlockProps.d.ts +29 -0
- package/dist/Components/DataDisplay/ContactsBlock/ContactItem.d.ts +3 -0
- package/dist/Components/DataDisplay/ContactsBlock/ContactItemProps.d.ts +8 -0
- package/dist/Components/DataDisplay/ContactsBlock/ContactsBlock.d.ts +3 -0
- package/dist/Components/DataDisplay/ContactsBlock/ContactsBlockProps.d.ts +6 -0
- package/dist/Components/DataDisplay/index.d.ts +12 -0
- package/dist/Components/Icons/Communication/PaperPlaneTilt/PaperPlaneTilt.d.ts +3 -0
- package/dist/Components/Icons/OfficeAndEditing/Paperclip/Paperclip.d.ts +3 -0
- package/dist/Components/Icons/index.d.ts +2 -0
- package/dist/img/contact-image.svg +9 -0
- package/dist/img/promo-banner-img.png +0 -0
- package/dist/index.cjs.js +14 -13
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +2361 -1440
- package/dist/index.es.js.map +1 -1
- package/dist/selwynui.css +1 -1
- package/package.json +1 -1
- package/src/Components/DataDisplay/ChatItenaryBlock/ChatItenaryBlock.stories.tsx +99 -0
- package/src/Components/DataDisplay/ChatItenaryBlock/ChatItenaryBlock.tsx +207 -0
- package/src/Components/DataDisplay/ChatItenaryBlock/ChatItenaryBlockProps.tsx +33 -0
- package/src/Components/DataDisplay/ChatItenaryBlock/chatItenaryBlock.module.scss +598 -0
- package/src/Components/DataDisplay/ContactsBlock/ContactItem.tsx +38 -0
- package/src/Components/DataDisplay/ContactsBlock/ContactItemProps.tsx +9 -0
- package/src/Components/DataDisplay/ContactsBlock/ContactsBlock.stories.tsx +51 -0
- package/src/Components/DataDisplay/ContactsBlock/ContactsBlock.tsx +24 -0
- package/src/Components/DataDisplay/ContactsBlock/ContactsBlockProps.tsx +8 -0
- package/src/Components/DataDisplay/ContactsBlock/contactsBlock.module.scss +143 -0
- package/src/Components/DataDisplay/ImageContent/imageContent.module.scss +13 -5
- package/src/Components/DataDisplay/IntroBlock/IntroBlock.stories.tsx +1 -1
- package/src/Components/DataDisplay/IntroBlock/introBlock.module.scss +18 -0
- package/src/Components/DataDisplay/KPIBlock/KPIBlock.stories.tsx +2 -2
- package/src/Components/DataDisplay/ListingDetailBlock/ListingDetailBlock.tsx +0 -0
- package/src/Components/DataDisplay/ListingDetailBlock/ListingDetailBlockProps.tsx +8 -0
- package/src/Components/DataDisplay/ListingDetailBlock/listingDetailBlock.module.scss +0 -0
- package/src/Components/DataDisplay/PathwayBlock/PathwayBlock.stories.tsx +1 -1
- package/src/Components/DataDisplay/PathwayBlock/PathwayBlock.tsx +2 -2
- package/src/Components/DataDisplay/PromoBannerBlock/PromoBanner.stories.tsx +3 -3
- package/src/Components/DataDisplay/PromoBannerBlock/promoBanner.module.scss +9 -13
- package/src/Components/DataDisplay/TestimonyCard/TestimonyCard.stories.tsx +1 -1
- package/src/Components/DataDisplay/TestimonyCard/testimonyCard.module.scss +72 -4
- package/src/Components/DataDisplay/index.ts +28 -1
- package/src/Components/Icons/Communication/PaperPlaneTilt/PaperPlaneTilt.tsx +37 -0
- package/src/Components/Icons/OfficeAndEditing/Paperclip/Paperclip.tsx +37 -0
- package/src/Components/Icons/index.ts +3 -1
- package/src/Components/Layout/Footer/footer.module.scss +3 -2
- package/src/Components/Shared/PillarLogo/PillarLogo.tsx +2 -2
- package/dist/img/promo-banner-image.svg +0 -9
|
@@ -0,0 +1,143 @@
|
|
|
1
|
+
.contactsBlock {
|
|
2
|
+
background-color: var(--color-block-bg);
|
|
3
|
+
color: var(--color-block-text);
|
|
4
|
+
|
|
5
|
+
.contactsBlockHeader {
|
|
6
|
+
padding-bottom: 36px;
|
|
7
|
+
font-size: var(--font-size-h3);
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.contactsCardsWrapper {
|
|
11
|
+
width: 100%;
|
|
12
|
+
|
|
13
|
+
.contactCard {
|
|
14
|
+
background-color: var(--color-block-bg);
|
|
15
|
+
border-radius: 12px;
|
|
16
|
+
border: 1px solid var(--color-taste);
|
|
17
|
+
transition: all ease 0.3s;
|
|
18
|
+
margin-bottom: 24px;
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
&:hover {
|
|
22
|
+
background-color: var(--color-bg);
|
|
23
|
+
color: var(--color-text);
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
img {
|
|
27
|
+
object-fit: cover;
|
|
28
|
+
border-radius: 12px 12px 0 0;
|
|
29
|
+
width: 100%;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
.contactContentWrapper {
|
|
33
|
+
padding: 24px;
|
|
34
|
+
|
|
35
|
+
.contactCardHeader {
|
|
36
|
+
h1 {
|
|
37
|
+
font-size: var(--font-size-h6);
|
|
38
|
+
font-weight: var(--font-weight-bold);
|
|
39
|
+
line-height: var(--line-height-h6);
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
h2 {
|
|
43
|
+
font-size: var(--font-size-h6);
|
|
44
|
+
font-weight: var(--font-weight-h4);
|
|
45
|
+
line-height: var(--line-height-h6);
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
.contactMiddleContent {
|
|
50
|
+
padding-block: 24px;
|
|
51
|
+
|
|
52
|
+
p {
|
|
53
|
+
font-size: var(--font-size-small);
|
|
54
|
+
font-weight: var(--font-weight-h4);
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.contactLink {
|
|
59
|
+
display: flex;
|
|
60
|
+
justify-content: space-between;
|
|
61
|
+
font-size: var(--font-size-regular-sm);
|
|
62
|
+
font-weight: var(--font-weight-bold);
|
|
63
|
+
cursor: pointer;
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
|
|
72
|
+
@media screen and (min-width: 992px) {
|
|
73
|
+
.contactsBlock {
|
|
74
|
+
|
|
75
|
+
.contactsBlockHeader {
|
|
76
|
+
padding-bottom: 72px;
|
|
77
|
+
font-size: var(--font-size-h3);
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
.contactsCardsWrapper {
|
|
81
|
+
display: flex;
|
|
82
|
+
flex-wrap: wrap;
|
|
83
|
+
flex-grow: 1;
|
|
84
|
+
gap: 24px;
|
|
85
|
+
width: 100%;
|
|
86
|
+
|
|
87
|
+
.contactCard {
|
|
88
|
+
background-color: var(--color-block-bg);
|
|
89
|
+
border-radius: 12px;
|
|
90
|
+
border: 1px solid var(--color-taste);
|
|
91
|
+
width: 33.33%;
|
|
92
|
+
transition: all ease 0.3s;
|
|
93
|
+
|
|
94
|
+
&:hover {
|
|
95
|
+
background-color: var(--color-bg);
|
|
96
|
+
color: var(--color-text);
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
img {
|
|
100
|
+
object-fit: cover;
|
|
101
|
+
border-radius: 12px 12px 0 0;
|
|
102
|
+
width: 100%;
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
.contactContentWrapper {
|
|
106
|
+
padding: 24px;
|
|
107
|
+
|
|
108
|
+
.contactCardHeader {
|
|
109
|
+
h1 {
|
|
110
|
+
font-size: var(--font-size-h6);
|
|
111
|
+
font-weight: var(--font-weight-bold);
|
|
112
|
+
line-height: var(--line-height-h6);
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
h2 {
|
|
116
|
+
font-size: var(--font-size-h6);
|
|
117
|
+
font-weight: var(--font-weight-h4);
|
|
118
|
+
line-height: var(--line-height-h6);
|
|
119
|
+
}
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
.contactMiddleContent {
|
|
123
|
+
padding-block: 24px;
|
|
124
|
+
|
|
125
|
+
p {
|
|
126
|
+
font-size: var(--font-size-small);
|
|
127
|
+
font-weight: var(--font-weight-h4);
|
|
128
|
+
}
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
.contactLink {
|
|
132
|
+
display: flex;
|
|
133
|
+
justify-content: space-between;
|
|
134
|
+
font-size: var(--font-size-regular-sm);
|
|
135
|
+
font-weight: var(--font-weight-bold);
|
|
136
|
+
cursor: pointer;
|
|
137
|
+
}
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
}
|
|
141
|
+
}
|
|
142
|
+
}
|
|
143
|
+
}
|
|
@@ -72,7 +72,7 @@
|
|
|
72
72
|
}
|
|
73
73
|
|
|
74
74
|
.desc{
|
|
75
|
-
margin-top:
|
|
75
|
+
margin-top: 48px;
|
|
76
76
|
font-size: var(--font-size-body-regular);
|
|
77
77
|
line-height: var(--line-height-body-regular);
|
|
78
78
|
font-weight: 400;
|
|
@@ -220,18 +220,22 @@
|
|
|
220
220
|
height: 100%;
|
|
221
221
|
width: 100%;
|
|
222
222
|
min-width: 50vw;
|
|
223
|
-
|
|
223
|
+
position: relative;
|
|
224
224
|
|
|
225
225
|
|
|
226
|
-
|
|
227
|
-
content:
|
|
226
|
+
&:before {
|
|
227
|
+
content: '';
|
|
228
|
+
display:block ;
|
|
229
|
+
padding-top: 103%;
|
|
228
230
|
}
|
|
229
231
|
|
|
230
232
|
img {
|
|
233
|
+
position: absolute;
|
|
234
|
+
top: 0;
|
|
235
|
+
left: 0;
|
|
231
236
|
width: 100%;
|
|
232
237
|
height: 100%;
|
|
233
238
|
object-fit: cover;
|
|
234
|
-
object-position: center;
|
|
235
239
|
}
|
|
236
240
|
}
|
|
237
241
|
|
|
@@ -347,6 +351,10 @@
|
|
|
347
351
|
.content{
|
|
348
352
|
width: 50%;
|
|
349
353
|
padding: 0 52px;
|
|
354
|
+
|
|
355
|
+
.desc{
|
|
356
|
+
margin-top: 72px;
|
|
357
|
+
}
|
|
350
358
|
}
|
|
351
359
|
|
|
352
360
|
&.left{
|
|
@@ -19,7 +19,7 @@ type Story = StoryObj<typeof meta>;
|
|
|
19
19
|
const IntroBlockTemplate: Story = {
|
|
20
20
|
render: () => {
|
|
21
21
|
return (
|
|
22
|
-
<ElementHolder paddingTop="sm" paddingBottom="sm"
|
|
22
|
+
<ElementHolder paddingTop="sm" paddingBottom="sm" pillar="visit" level="light">
|
|
23
23
|
<IntroBlock
|
|
24
24
|
introHeading={'A district that’s growing, grounded, and full of opportunity.'}
|
|
25
25
|
introText={'From the Southern Alps to the sea, Waikirikiri Selwyn’s diverse towns arespread across the Canterbury Plains between two mighty braided rivers. This is where ideas take root, families and businesses grow, and communities come together. We don’t just dream of a better future, we make it happen.'}
|
|
@@ -1,4 +1,22 @@
|
|
|
1
1
|
.introBlock {
|
|
2
|
+
.introBlockWrapper {
|
|
3
|
+
.introBlockLeft {
|
|
4
|
+
padding: 0 0 48px 0;
|
|
5
|
+
h1 {
|
|
6
|
+
font-size: var(--font-size-h5);
|
|
7
|
+
font-weight: var(--font-weight-h3);
|
|
8
|
+
line-height: var(--line-height-h5);
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
.introBlockRight {
|
|
13
|
+
h1 {
|
|
14
|
+
font-size: var(--font-size-regular);
|
|
15
|
+
font-weight: var(--font-weight-body-regular);
|
|
16
|
+
line-height: var(--line-height-label);
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
}
|
|
2
20
|
|
|
3
21
|
@media screen and (min-width: 992px) {
|
|
4
22
|
.introBlockWrapper {
|
|
@@ -21,7 +21,7 @@ const KPIBlockTemplate: Story = {
|
|
|
21
21
|
|
|
22
22
|
return (
|
|
23
23
|
<>
|
|
24
|
-
<ElementHolder paddingTop="sm" paddingBottom="sm"
|
|
24
|
+
<ElementHolder paddingTop="sm" paddingBottom="sm" pillar="business" level="secondary">
|
|
25
25
|
<KPIBlock
|
|
26
26
|
title={'Insights lorem ipsum dolor sit amet'}
|
|
27
27
|
description={'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'}
|
|
@@ -55,7 +55,7 @@ const KPIBlockBusinessTemplate: Story = {
|
|
|
55
55
|
|
|
56
56
|
return (
|
|
57
57
|
<>
|
|
58
|
-
<ElementHolder paddingTop="sm" paddingBottom="sm"
|
|
58
|
+
<ElementHolder paddingTop="sm" paddingBottom="sm" pillar="business" level="secondary">
|
|
59
59
|
<KPIBlock
|
|
60
60
|
title={'Business Growth Statistics'}
|
|
61
61
|
description={'Our comprehensive approach to business development has yielded impressive results across multiple sectors.'}
|
|
File without changes
|
|
File without changes
|
|
@@ -21,7 +21,7 @@ const PathwayBlockTemplate: Story = {
|
|
|
21
21
|
render: () => {
|
|
22
22
|
return (
|
|
23
23
|
<>
|
|
24
|
-
<ElementHolder paddingTop="sm" paddingBottom="sm"
|
|
24
|
+
<ElementHolder paddingTop="sm" paddingBottom="sm" pillar="participate" level="light">
|
|
25
25
|
<PathwayBlock
|
|
26
26
|
title="Lorem ipsum"
|
|
27
27
|
pillar="visit"
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React from "react";
|
|
2
|
-
import { Meta, StoryObj } from "@storybook/react";
|
|
2
|
+
import { Meta, StoryObj } from "@storybook/react-vite";
|
|
3
3
|
import PromoBannerBlock from './PromoBannerBlock';
|
|
4
4
|
import Button from '../../Form/Button/Button';
|
|
5
5
|
import ArrowRight from "../../Icons/Arrows/ArrowRight/ArrowRight";
|
|
@@ -29,9 +29,9 @@ const PromoBannerBlockTemplate: Story = {
|
|
|
29
29
|
title={'Spring gardens'}
|
|
30
30
|
boldTitle={'in Selwyn'}
|
|
31
31
|
content={'Visit Selwyn is for those who like to take the back roads, breathe mountain air, and find their own pace. Stay a little longer, explore deeper, and refuel with great kai and local stories along the way.'}
|
|
32
|
-
image={'promo-banner-
|
|
32
|
+
image={'/img/promo-banner-img.png'}
|
|
33
33
|
button={
|
|
34
|
-
<Button label={'START EXPLORING'}
|
|
34
|
+
<Button label={'START EXPLORING'} pillar={'visit'} level={'primary'} secondaryIcon={<ArrowRight />} />
|
|
35
35
|
}
|
|
36
36
|
/>
|
|
37
37
|
</ElementHolder>
|
|
@@ -3,9 +3,10 @@
|
|
|
3
3
|
padding: 48px 0px;
|
|
4
4
|
|
|
5
5
|
.promoBannerBlockContainer {
|
|
6
|
+
|
|
6
7
|
.promoBannerTop {
|
|
7
8
|
.promoBannerTopLeft {
|
|
8
|
-
padding: 0
|
|
9
|
+
padding: 0 ;
|
|
9
10
|
|
|
10
11
|
h1 {
|
|
11
12
|
font-size: var(--font-size-h5);
|
|
@@ -15,7 +16,7 @@
|
|
|
15
16
|
}
|
|
16
17
|
|
|
17
18
|
.promoBannerTopRight {
|
|
18
|
-
padding: 48px
|
|
19
|
+
padding: 48px 0px;
|
|
19
20
|
|
|
20
21
|
h1 {
|
|
21
22
|
font-size: var(--font-size-regular);
|
|
@@ -31,11 +32,12 @@
|
|
|
31
32
|
}
|
|
32
33
|
|
|
33
34
|
.promoBannerBottom {
|
|
34
|
-
|
|
35
|
+
border-radius: 16px 16px 96px 6px;
|
|
35
36
|
background: linear-gradient(to bottom,
|
|
36
37
|
var(--pathway-card-bg) 0%,
|
|
37
38
|
var(--pathway-card-bg) 60%,
|
|
38
39
|
transparent 60%);
|
|
40
|
+
overflow: hidden;
|
|
39
41
|
|
|
40
42
|
.promoBannerBottomLeft {
|
|
41
43
|
color: var(--pathway-card-text);
|
|
@@ -60,13 +62,13 @@
|
|
|
60
62
|
padding-block: 32px;
|
|
61
63
|
|
|
62
64
|
h1 {
|
|
63
|
-
font-size: var(--font-size-small);
|
|
65
|
+
font-size: var(--font-size-body-small);
|
|
64
66
|
font-weight: var(--font-weight-body-sm);
|
|
65
67
|
line-height: var(--line-height-h5);
|
|
66
68
|
}
|
|
67
69
|
|
|
68
70
|
h2 {
|
|
69
|
-
font-size: var(--font-size-small);
|
|
71
|
+
font-size: var(--font-size-body-small);
|
|
70
72
|
font-weight: var(--font-weight-bold);
|
|
71
73
|
line-height: var(--line-height-body-regular);
|
|
72
74
|
}
|
|
@@ -82,12 +84,12 @@
|
|
|
82
84
|
|
|
83
85
|
.promoBannerBottomRight {
|
|
84
86
|
background: var(--color-sand);
|
|
87
|
+
line-height: 0;
|
|
85
88
|
|
|
86
89
|
img {
|
|
87
90
|
height: 100%;
|
|
88
91
|
width: 100%;
|
|
89
92
|
object-fit: cover;
|
|
90
|
-
border-radius: 0 0 0 16px;
|
|
91
93
|
}
|
|
92
94
|
}
|
|
93
95
|
}
|
|
@@ -138,13 +140,11 @@
|
|
|
138
140
|
|
|
139
141
|
.promoBannerBottom {
|
|
140
142
|
display: flex;
|
|
141
|
-
|
|
142
|
-
background: transparent;
|
|
143
|
+
margin-top: 90px;
|
|
143
144
|
|
|
144
145
|
.promoBannerBottomLeft {
|
|
145
146
|
background-color: var(--pathway-card-bg);
|
|
146
147
|
padding: 72px 90px 72px 72px;
|
|
147
|
-
border-radius: 16px 0 0 16px;
|
|
148
148
|
width: 50%;
|
|
149
149
|
|
|
150
150
|
.promoBannerTitleContainer {
|
|
@@ -169,10 +169,6 @@
|
|
|
169
169
|
|
|
170
170
|
.promoBannerBottomRight {
|
|
171
171
|
width: 50%;
|
|
172
|
-
|
|
173
|
-
img {
|
|
174
|
-
border-radius: 0 16px 96px 0;
|
|
175
|
-
}
|
|
176
172
|
}
|
|
177
173
|
}
|
|
178
174
|
|
|
@@ -21,7 +21,7 @@ const TestimonyCardTemplate: Story = {
|
|
|
21
21
|
render: () => {
|
|
22
22
|
return (
|
|
23
23
|
<>
|
|
24
|
-
<ElementHolder paddingTop="sm" paddingBottom="sm"
|
|
24
|
+
<ElementHolder paddingTop="sm" paddingBottom="sm" pillar="visit" level="light">
|
|
25
25
|
<TestimonyCard
|
|
26
26
|
testimonies={[
|
|
27
27
|
{
|
|
@@ -1,11 +1,20 @@
|
|
|
1
1
|
.testimonyCard {
|
|
2
|
+
padding: 96px 0;
|
|
2
3
|
|
|
4
|
+
@media (max-width: 834px) {
|
|
5
|
+
padding: 0 0;
|
|
6
|
+
}
|
|
3
7
|
}
|
|
4
8
|
|
|
5
9
|
.testimonyCardWrapper {
|
|
6
10
|
display: flex;
|
|
7
11
|
gap: 69px;
|
|
8
12
|
align-items: center;
|
|
13
|
+
|
|
14
|
+
@media (max-width: 834px) {
|
|
15
|
+
flex-direction: column;
|
|
16
|
+
gap: 32px;
|
|
17
|
+
}
|
|
9
18
|
}
|
|
10
19
|
|
|
11
20
|
.testimonyCardLeft {
|
|
@@ -13,6 +22,13 @@
|
|
|
13
22
|
padding-top: 96px;
|
|
14
23
|
padding-bottom: 96px;
|
|
15
24
|
|
|
25
|
+
@media (max-width: 834px) {
|
|
26
|
+
padding-top: 0;
|
|
27
|
+
padding-bottom: 0;
|
|
28
|
+
width: 100%;
|
|
29
|
+
display: flex;
|
|
30
|
+
justify-content: center;
|
|
31
|
+
}
|
|
16
32
|
|
|
17
33
|
img {
|
|
18
34
|
width: 333px;
|
|
@@ -20,6 +36,16 @@
|
|
|
20
36
|
border-radius: 2px 2px 96px 2px;
|
|
21
37
|
object-fit: cover;
|
|
22
38
|
|
|
39
|
+
@media (max-width: 834px) {
|
|
40
|
+
width: 100%;
|
|
41
|
+
height: 360px;
|
|
42
|
+
//aspect-ratio: 1;
|
|
43
|
+
border-radius: 2px 2px 96px 2px;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
@media (max-width: 480px) {
|
|
47
|
+
border-radius: 2px 2px 96px 2px;
|
|
48
|
+
}
|
|
23
49
|
}
|
|
24
50
|
}
|
|
25
51
|
|
|
@@ -29,7 +55,10 @@
|
|
|
29
55
|
flex-direction: column;
|
|
30
56
|
gap: 24px;
|
|
31
57
|
|
|
32
|
-
|
|
58
|
+
@media (max-width: 834px) {
|
|
59
|
+
width: 100%;
|
|
60
|
+
gap: 16px;
|
|
61
|
+
}
|
|
33
62
|
|
|
34
63
|
p {
|
|
35
64
|
font-size: 14px;
|
|
@@ -37,6 +66,11 @@
|
|
|
37
66
|
letter-spacing: -0.14px;
|
|
38
67
|
line-height: var(--line-height-body-regular);
|
|
39
68
|
padding-left: 70px;
|
|
69
|
+
|
|
70
|
+
@media (max-width: 834px) {
|
|
71
|
+
padding-left: 0;
|
|
72
|
+
font-size: 12px;
|
|
73
|
+
}
|
|
40
74
|
}
|
|
41
75
|
}
|
|
42
76
|
|
|
@@ -45,15 +79,25 @@
|
|
|
45
79
|
gap: 16px;
|
|
46
80
|
align-items: flex-start;
|
|
47
81
|
|
|
48
|
-
|
|
82
|
+
@media (max-width: 834px) {
|
|
83
|
+
flex-direction: column;
|
|
84
|
+
gap: 12px;
|
|
85
|
+
}
|
|
49
86
|
|
|
50
|
-
|
|
87
|
+
.quoteIcon {
|
|
88
|
+
svg {
|
|
51
89
|
font-size: 80px;
|
|
52
90
|
line-height: 0.8;
|
|
53
91
|
flex-shrink: 0;
|
|
54
92
|
margin-top: 0;
|
|
55
|
-
|
|
93
|
+
width: 56px;
|
|
94
|
+
height: 39px;
|
|
56
95
|
|
|
96
|
+
@media (max-width: 834px) {
|
|
97
|
+
width: 40px;
|
|
98
|
+
height: 27px;
|
|
99
|
+
}
|
|
100
|
+
}
|
|
57
101
|
}
|
|
58
102
|
|
|
59
103
|
h6 {
|
|
@@ -61,6 +105,15 @@
|
|
|
61
105
|
line-height: 1.3;
|
|
62
106
|
font-weight: var(--font-weight-body-sm);
|
|
63
107
|
letter-spacing: -0.48px;
|
|
108
|
+
white-space: pre-line;
|
|
109
|
+
|
|
110
|
+
@media (max-width: 834px) {
|
|
111
|
+
font-size: var(--font-size-body-regular);
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
@media (max-width: 480px) {
|
|
115
|
+
font-size: var(--font-size-body-sm);
|
|
116
|
+
}
|
|
64
117
|
}
|
|
65
118
|
}
|
|
66
119
|
|
|
@@ -69,6 +122,11 @@
|
|
|
69
122
|
gap: 12px;
|
|
70
123
|
padding-left: 70px;
|
|
71
124
|
|
|
125
|
+
@media (max-width: 834px) {
|
|
126
|
+
padding-left: 0;
|
|
127
|
+
gap: 8px;
|
|
128
|
+
}
|
|
129
|
+
|
|
72
130
|
.dot {
|
|
73
131
|
width: 20px;
|
|
74
132
|
height: 20px;
|
|
@@ -82,12 +140,22 @@
|
|
|
82
140
|
align-items: center;
|
|
83
141
|
justify-content: center;
|
|
84
142
|
|
|
143
|
+
@media (max-width: 834px) {
|
|
144
|
+
width: 16px;
|
|
145
|
+
height: 16px;
|
|
146
|
+
}
|
|
147
|
+
|
|
85
148
|
&.active::before {
|
|
86
149
|
content: '';
|
|
87
150
|
width: 12px;
|
|
88
151
|
height: 12px;
|
|
89
152
|
border-radius: 50%;
|
|
90
153
|
background-color: var(--color-visit);
|
|
154
|
+
|
|
155
|
+
@media (max-width: 834px) {
|
|
156
|
+
width: 8px;
|
|
157
|
+
height: 8px;
|
|
158
|
+
}
|
|
91
159
|
}
|
|
92
160
|
}
|
|
93
161
|
}
|
|
@@ -1,3 +1,13 @@
|
|
|
1
|
+
// Accordion
|
|
2
|
+
export { default as Accordion } from './Accordion/Accordion';
|
|
3
|
+
export type { default as AccordionProps } from './Accordion/AccordionProps';
|
|
4
|
+
export { default as AccordionContext } from './Accordion/AccordionContext';
|
|
5
|
+
export type { default as AccordionContextInterface } from './Accordion/AccordionContextInterface';
|
|
6
|
+
export { default as AccordionItem } from './Accordion/AccordionItem';
|
|
7
|
+
export type { default as AccordionItemProps } from './Accordion/AccordionItemProps';
|
|
8
|
+
export { default as AccordionProvider } from './Accordion/AccordionProvider';
|
|
9
|
+
export type { default as AccordionProviderInterface } from './Accordion/AccordionProviderInterface';
|
|
10
|
+
|
|
1
11
|
// DetailsCard
|
|
2
12
|
export { default as DetailsCard } from './DetailsCard/DetailsCard';
|
|
3
13
|
export type { default as DetailsCardProps } from './DetailsCard/DetailsCardProps';
|
|
@@ -10,6 +20,18 @@ export type { default as IntroBlockProps } from './IntroBlock/IntroBlockProps';
|
|
|
10
20
|
export { default as KPIBlock } from './KPIBlock/KPIBlock';
|
|
11
21
|
export type { default as KPIBlockProps } from './KPIBlock/KPIBlockProps';
|
|
12
22
|
|
|
23
|
+
// PathwayBlock
|
|
24
|
+
export { default as PathwayBlock } from './PathwayBlock/PathwayBlock';
|
|
25
|
+
export type { default as PathwayBlockProps } from './PathwayBlock/PathwayBlockProps';
|
|
26
|
+
|
|
27
|
+
// ChatItenaryBlock
|
|
28
|
+
export { default as ChatItenaryBlock } from './ChatItenaryBlock/ChatItenaryBlock';
|
|
29
|
+
export type { default as ChatItenaryBlockProps } from './ChatItenaryBlock/ChatItenaryBlockProps';
|
|
30
|
+
|
|
31
|
+
// TestimonyCard
|
|
32
|
+
export { default as TestimonyCard } from './TestimonyCard/TestimonyCard';
|
|
33
|
+
export type { default as TestimonyCardProps } from './TestimonyCard/TestimonyCardProps';
|
|
34
|
+
|
|
13
35
|
// Pathway
|
|
14
36
|
export { default as Pathway } from './Pathway/Pathway';
|
|
15
37
|
export type { default as PathwayProps } from './Pathway/PathwayProps';
|
|
@@ -18,6 +40,11 @@ export type { default as PathwayProps } from './Pathway/PathwayProps';
|
|
|
18
40
|
export { default as PromoBannerBlock } from './PromoBannerBlock/PromoBannerBlock';
|
|
19
41
|
export type { default as PromoBannerBlockProps } from './PromoBannerBlock/PromoBannerBlockProps';
|
|
20
42
|
|
|
43
|
+
// ContactBlock
|
|
44
|
+
export { default as ContactBlock } from './ContactsBlock/ContactsBlock';
|
|
45
|
+
export type { default as ContactBlockProps } from './ContactsBlock/ContactsBlockProps';
|
|
46
|
+
export { default as ContactItem } from './ContactsBlock/ContactItem';
|
|
47
|
+
export type { default as ContactItemProps } from './ContactsBlock/ContactItemProps';
|
|
21
48
|
//ImageContent
|
|
22
49
|
export {default as ImageContent} from './ImageContent/ImageContent'
|
|
23
|
-
export type {default as ImageContentProps} from './ImageContent/ImageContentProps'
|
|
50
|
+
export type {default as ImageContentProps} from './ImageContent/ImageContentProps'
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import IconProps from "../../IconProps";
|
|
2
|
+
|
|
3
|
+
const PaperPlaneTilt = ({type}: IconProps) => {
|
|
4
|
+
|
|
5
|
+
if (type === 'thin') {
|
|
6
|
+
return <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32" fill="none">
|
|
7
|
+
<path d="M28.0586 3.94003C27.8693 3.74971 27.6319 3.61432 27.3717 3.54828C27.1115 3.48225 26.8382 3.48803 26.5811 3.56503L2.59234 10.8338C2.2982 10.9165 2.03635 11.0871 1.84181 11.3227C1.64728 11.5584 1.52935 11.8478 1.50379 12.1523C1.47824 12.4568 1.54628 12.7618 1.69882 13.0265C1.85135 13.2913 2.08111 13.5032 2.35734 13.6338L13.0586 18.7025C13.1632 18.7517 13.2476 18.8356 13.2973 18.94L18.3661 29.6425C18.4859 29.8996 18.6769 30.1169 18.9163 30.2689C19.1558 30.4208 19.4337 30.501 19.7173 30.5C19.7598 30.5 19.8036 30.5 19.8423 30.5C20.1456 30.4764 20.4342 30.3603 20.6694 30.1674C20.9046 29.9744 21.0749 29.714 21.1573 29.4213L28.4336 5.42128V5.41128C28.5096 5.15503 28.5149 4.88297 28.4489 4.62395C28.3829 4.36493 28.248 4.12861 28.0586 3.94003ZM27.4811 5.13253L20.2023 29.1325C20.1746 29.2303 20.1178 29.3174 20.0393 29.3821C19.9609 29.4467 19.8646 29.486 19.7633 29.4945C19.662 29.5031 19.5605 29.4805 19.4724 29.4299C19.3842 29.3793 19.3135 29.3031 19.2698 29.2113L14.2011 18.5125L20.3561 12.3588C20.4025 12.3123 20.4394 12.2572 20.4645 12.1965C20.4897 12.1358 20.5026 12.0707 20.5026 12.005C20.5026 11.9393 20.4897 11.8743 20.4645 11.8136C20.4394 11.7529 20.4025 11.6977 20.3561 11.6513C20.3096 11.6048 20.2545 11.568 20.1938 11.5428C20.1331 11.5177 20.068 11.5047 20.0023 11.5047C19.9366 11.5047 19.8716 11.5177 19.8109 11.5428C19.7502 11.568 19.695 11.6048 19.6486 11.6513L13.4936 17.8063L2.78609 12.73C2.69166 12.6878 2.61319 12.6166 2.56214 12.5266C2.51109 12.4366 2.49014 12.3327 2.50234 12.23C2.50979 12.126 2.55014 12.0271 2.61756 11.9475C2.68497 11.868 2.77596 11.8119 2.87734 11.7875L26.8623 4.52003C26.907 4.50688 26.9533 4.50015 26.9998 4.50003C27.1311 4.5019 27.2564 4.55533 27.3486 4.64878C27.4121 4.71007 27.4579 4.78734 27.4812 4.87247C27.5045 4.95759 27.5045 5.04743 27.4811 5.13253Z" fill="currentColor"/>
|
|
8
|
+
</svg>
|
|
9
|
+
}
|
|
10
|
+
if (type === 'regular') {
|
|
11
|
+
return <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32" fill="none">
|
|
12
|
+
<path d="M28.415 3.58509C28.1635 3.33375 27.8496 3.15401 27.5055 3.06436C27.1614 2.97472 26.7997 2.97842 26.4575 3.07509H26.4388L2.44626 10.3551C2.0557 10.4674 1.70863 10.696 1.45126 11.0105C1.19388 11.325 1.03842 11.7105 1.00557 12.1155C0.97272 12.5206 1.06404 12.926 1.26738 13.2779C1.47071 13.6297 1.77641 13.9113 2.14376 14.0851L12.8463 19.1538L17.915 29.8563C18.075 30.1991 18.3298 30.4889 18.6492 30.6915C18.9686 30.8942 19.3393 31.0013 19.7175 31.0001C19.775 31.0001 19.8325 30.9976 19.89 30.9926C20.2936 30.9599 20.6776 30.8046 20.9904 30.5474C21.3032 30.2902 21.5299 29.9435 21.64 29.5538L28.915 5.56134C28.915 5.55509 28.915 5.54884 28.915 5.54259C29.0129 5.20129 29.0182 4.84008 28.9304 4.49606C28.8425 4.15204 28.6646 3.83762 28.415 3.58509ZM19.7288 28.9813L19.7225 28.9988L14.8025 18.6126L20.7075 12.7063C20.8871 12.5173 20.9858 12.2655 20.9824 12.0048C20.9791 11.744 20.874 11.4949 20.6896 11.3105C20.5052 11.1261 20.2561 11.021 19.9953 11.0176C19.7346 11.0143 19.4828 11.113 19.2938 11.2926L13.3875 17.1976L3.00001 12.2776H3.01751L27 5.00009L19.7288 28.9813Z" fill="currentColor"/>
|
|
13
|
+
</svg>
|
|
14
|
+
}
|
|
15
|
+
if (type === 'bold') {
|
|
16
|
+
return <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32" fill="none">
|
|
17
|
+
<path d="M28.7673 3.2325C28.4531 2.91823 28.0608 2.69337 27.6309 2.5811C27.2009 2.46883 26.7488 2.4732 26.3211 2.59375L26.2936 2.6025L2.3048 9.875C1.81755 10.0163 1.38481 10.3024 1.06406 10.6955C0.743306 11.0886 0.549727 11.5699 0.509034 12.0756C0.46834 12.5813 0.582457 13.0874 0.836227 13.5267C1.09 13.9659 1.47141 14.3176 1.9298 14.535L12.4698 19.535L17.4698 30.075C17.6694 30.5031 17.9873 30.8653 18.3859 31.1186C18.7846 31.372 19.2474 31.5061 19.7198 31.505C19.791 31.505 19.8636 31.505 19.9361 31.4963C20.4413 31.456 20.9221 31.2617 21.3135 30.9396C21.7049 30.6175 21.988 30.1831 22.1248 29.695L29.3973 5.70625C29.401 5.69734 29.4039 5.68814 29.406 5.67875C29.5266 5.25103 29.531 4.7989 29.4187 4.36893C29.3064 3.93896 29.0816 3.54668 28.7673 3.2325ZM19.6248 27.615L15.4098 18.7163L21.066 13.06C21.3478 12.7782 21.5062 12.396 21.5062 11.9975C21.5062 11.599 21.3478 11.2168 21.066 10.935C20.7843 10.6532 20.4021 10.4949 20.0035 10.4949C19.605 10.4949 19.2228 10.6532 18.941 10.935L13.2848 16.5913L4.3848 12.375L26.2498 5.75L19.6248 27.615Z" fill="currentColor"/>
|
|
18
|
+
</svg>
|
|
19
|
+
}
|
|
20
|
+
if (type === 'fill') {
|
|
21
|
+
return <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32" fill="none">
|
|
22
|
+
<path d="M28.925 5.54242C28.925 5.54242 28.925 5.55492 28.925 5.56117L21.65 29.5537C21.5399 29.9434 21.3132 30.2901 21.0004 30.5472C20.6876 30.8044 20.3036 30.9597 19.9 30.9924C19.8425 30.9974 19.785 30.9999 19.7275 30.9999C19.3492 31.0011 18.9785 30.894 18.6592 30.6914C18.3398 30.4887 18.085 30.1989 17.925 29.8562L13.4612 20.4324C13.4172 20.3392 13.403 20.2346 13.4207 20.133C13.4384 20.0314 13.487 19.9378 13.56 19.8649L20.7175 12.7062C20.8971 12.5171 20.9958 12.2654 20.9924 12.0046C20.9891 11.7438 20.884 11.4947 20.6996 11.3103C20.5152 11.1259 20.2661 11.0208 20.0053 11.0175C19.7446 11.0141 19.4928 11.1128 19.3037 11.2924L12.135 18.4499C12.0621 18.5229 11.9685 18.5715 11.8669 18.5892C11.7653 18.6069 11.6607 18.5927 11.5675 18.5487L2.19249 14.1074C1.8243 13.9387 1.51444 13.6646 1.30216 13.3197C1.08987 12.9748 0.984714 12.5746 0.999992 12.1699C1.02035 11.754 1.17094 11.3549 1.43047 11.0292C1.69 10.7035 2.04533 10.4676 2.44624 10.3549L26.4387 3.07992H26.4575C26.7991 2.98394 27.1601 2.98058 27.5034 3.07017C27.8468 3.15976 28.1601 3.33908 28.4112 3.58972C28.6624 3.84037 28.8423 4.15333 28.9326 4.49648C29.0229 4.83963 29.0203 5.20062 28.925 5.54242Z" fill="currentColor"/>
|
|
23
|
+
</svg>
|
|
24
|
+
}
|
|
25
|
+
if (type === 'duotone') {
|
|
26
|
+
return <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32" fill="none">
|
|
27
|
+
<path opacity="0.2" d="M27.9612 5.27256L20.6837 29.2726C20.6281 29.4681 20.5143 29.6421 20.3574 29.7713C20.2004 29.9005 20.0078 29.9788 19.8052 29.9958C19.6027 30.0128 19.3997 29.9676 19.2235 29.8663C19.0472 29.765 18.906 29.6124 18.8187 29.4288L13.7499 18.7263C13.6511 18.5179 13.4833 18.3501 13.2749 18.2513L2.57244 13.1813C2.38886 13.094 2.23624 12.9528 2.13495 12.7765C2.03365 12.6003 1.98847 12.3973 2.00545 12.1948C2.02242 11.9922 2.10073 11.7996 2.22994 11.6426C2.35916 11.4857 2.53314 11.3719 2.72869 11.3163L26.7287 4.03882C26.8997 3.99089 27.0803 3.98936 27.2521 4.03438C27.4239 4.0794 27.5805 4.16934 27.706 4.29496C27.8315 4.42058 27.9213 4.57736 27.9662 4.74917C28.011 4.92098 28.0093 5.10163 27.9612 5.27256Z" fill="currentColor"/>
|
|
28
|
+
<path d="M28.415 3.58509C28.1635 3.33375 27.8496 3.15401 27.5055 3.06436C27.1614 2.97472 26.7997 2.97842 26.4575 3.07509H26.4388L2.44626 10.3551C2.0557 10.4674 1.70863 10.696 1.45126 11.0105C1.19388 11.325 1.03842 11.7105 1.00557 12.1155C0.97272 12.5206 1.06404 12.926 1.26738 13.2779C1.47071 13.6297 1.77641 13.9113 2.14376 14.0851L12.8463 19.1538L17.915 29.8563C18.075 30.1991 18.3298 30.4889 18.6492 30.6915C18.9686 30.8942 19.3393 31.0013 19.7175 31.0001C19.775 31.0001 19.8325 30.9976 19.89 30.9926C20.2936 30.9599 20.6776 30.8046 20.9904 30.5474C21.3032 30.2902 21.5299 29.9435 21.64 29.5538L28.915 5.56134C28.915 5.55509 28.915 5.54884 28.915 5.54259C29.0129 5.20129 29.0182 4.84008 28.9304 4.49606C28.8425 4.15204 28.6646 3.83762 28.415 3.58509ZM19.7288 28.9813L19.7225 28.9988L14.8025 18.6126L20.7075 12.7063C20.8871 12.5173 20.9858 12.2655 20.9824 12.0048C20.9791 11.744 20.874 11.4949 20.6896 11.3105C20.5052 11.1261 20.2561 11.021 19.9953 11.0176C19.7346 11.0143 19.4828 11.113 19.2938 11.2926L13.3875 17.1976L3.00001 12.2776H3.01751L27 5.00009L19.7288 28.9813Z" fill="currentColor"/>
|
|
29
|
+
</svg>
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
return <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32" fill="none">
|
|
33
|
+
<path d="M28.2351 3.76497C28.0165 3.54298 27.7419 3.3842 27.4405 3.30543C27.139 3.22666 26.8219 3.23082 26.5226 3.31747H26.5088L2.51759 10.5962C2.1757 10.6942 1.87177 10.8939 1.64627 11.169C1.42077 11.444 1.28441 11.7812 1.25536 12.1356C1.22631 12.4901 1.30594 12.8449 1.48365 13.153C1.66136 13.4611 1.92871 13.7077 2.25009 13.86L12.9513 18.9287C13.003 18.9541 13.0447 18.9958 13.0701 19.0475L18.1401 29.75C18.2801 30.0496 18.5029 30.303 18.7821 30.4802C19.0614 30.6574 19.3856 30.751 19.7163 30.75C19.7663 30.75 19.8176 30.75 19.8676 30.7437C20.2219 30.7159 20.5592 30.58 20.8339 30.3545C21.1086 30.1289 21.3075 29.8246 21.4038 29.4825L28.6788 5.49122V5.47747C28.766 5.17852 28.7707 4.86159 28.6926 4.56016C28.6145 4.25873 28.4564 3.98399 28.2351 3.76497ZM27.2351 5.06497L19.9663 29.0537V29.0675C19.9546 29.1176 19.9267 29.1625 19.887 29.1953C19.8472 29.228 19.7978 29.2468 19.7463 29.2487C19.6947 29.2565 19.642 29.2466 19.5967 29.2208C19.5513 29.1949 19.516 29.1546 19.4963 29.1062L14.4963 18.5612L20.5263 12.5312C20.6671 12.3905 20.7461 12.1996 20.7461 12.0006C20.7461 11.8016 20.6671 11.6107 20.5263 11.47C20.3856 11.3292 20.1947 11.2502 19.9957 11.2502C19.7967 11.2502 19.6058 11.3292 19.4651 11.47L13.4401 17.5L2.89384 12.5C2.84751 12.4784 2.8089 12.4431 2.78324 12.3989C2.75757 12.3547 2.74607 12.3037 2.7503 12.2527C2.75452 12.2018 2.77426 12.1533 2.80685 12.114C2.83945 12.0746 2.88333 12.0461 2.93259 12.0325H2.94634L26.9351 4.75997C26.9772 4.74813 27.0218 4.74793 27.0641 4.75937C27.1063 4.77081 27.1447 4.79348 27.1751 4.82497C27.2059 4.85583 27.2281 4.89422 27.2395 4.93632C27.251 4.97842 27.2511 5.02277 27.2401 5.06497H27.2351Z" fill="currentColor"/>
|
|
34
|
+
</svg>
|
|
35
|
+
};
|
|
36
|
+
|
|
37
|
+
export default PaperPlaneTilt;
|