Skip to content
This repository was archived by the owner on Feb 5, 2022. It is now read-only.

Commit d2119f1

Browse files
fix(cta): update text, button, and font family
1 parent a58541e commit d2119f1

File tree

3 files changed

+25
-24
lines changed

3 files changed

+25
-24
lines changed

src/assets/i18n/en.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -405,7 +405,7 @@ export const translations = {
405405
title: 'Got a vision?',
406406
subTitle: `We've got your back.`,
407407
text: 'Contact us today to get started!',
408-
link: 'GET IN TOUCH',
408+
link: `LET'S GET STARTED`,
409409
},
410410

411411
header: {

src/components/app-cta/app-cta.scss

Lines changed: 20 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -33,18 +33,24 @@
3333

3434
h2 {
3535
color: white;
36-
font-size: 22px;
36+
font-family: Muli;
37+
font-size: 24px;
38+
font-weight: 400;
39+
line-height: 29px;
3740
margin: 0 0 20px 0;
3841

3942
@include media-breakpoint-down(sm) {
4043
font-size: 20px;
4144
}
4245
}
4346

44-
p {
47+
h3 {
4548
color: $white;
46-
font-size: 38px;
47-
margin: 1rem 0;
49+
font-family: Muli;
50+
font-size: 40px;
51+
font-weight: 700;
52+
line-height: 48px;
53+
margin: 1rem 0 3rem;
4854

4955
@include media-breakpoint-down(sm) {
5056
font-size: 55px;
@@ -54,22 +60,17 @@
5460
}
5561

5662
button {
57-
background-color: #ec9b41;
58-
border: solid 0.8px white;
59-
border-radius: 2px;
60-
box-shadow: 0 2px 4px 0 rgba(128, 128, 128, 0.5);
61-
color: $gray-dark;
63+
background-color: #C75300;
64+
border: 0.75px solid #FFFFFF;
65+
border-radius: 16px;
66+
color: $white;
6267
cursor: pointer;
63-
font-family: Roboto;
68+
font-family: Muli;
6469
font-size: 11px;
65-
font-weight: bold;
66-
font-style: normal;
67-
font-stretch: normal;
68-
letter-spacing: 1.3px;
69-
height: auto;
70-
line-height: 1.82;
71-
padding: 0.5rem 1rem;
72-
text-align: center;
73-
width: auto;
70+
font-weight: 700;
71+
height: 32px;
72+
letter-spacing: 1.25px;
73+
line-height: 20px;
74+
width: 223px;
7475
}
7576
}

src/components/app-cta/app-cta.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ export class AppCta {
1515
<h2>
1616
<app-translate keyword="cta.title" />
1717
</h2>
18-
<p>
18+
<h3>
1919
<app-translate keyword="cta.subTitle" />
20-
</p>
21-
<h2>
20+
</h3>
21+
{/* <h2>
2222
<app-translate keyword="cta.text" />
23-
</h2>
23+
</h2> */}
2424

2525
<stencil-route-link url="/contact">
2626
<button class="button">

0 commit comments

Comments
 (0)