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

Commit d2f3113

Browse files
committed
Merge branch 'develop' into fix/jedi-twitter
2 parents f78c008 + 53a2a85 commit d2f3113

File tree

14 files changed

+73
-30
lines changed

14 files changed

+73
-30
lines changed

src/assets/i18n/en.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -132,6 +132,7 @@ export const translations = {
132132
company: 'Company',
133133
email: 'E-mail*',
134134
phone: 'Phone*',
135+
contact_phone: 'Phone',
135136
github: 'GitHub URL*',
136137
designProfile: 'Portfolio*',
137138
whatAreYouWorkingOn: 'What are you working on?',

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

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,15 @@
6363
}
6464
}
6565

66+
p {
67+
color: #ffffff;
68+
font-family: Muli;
69+
font-size: 40px;
70+
font-weight: 700;
71+
line-height: 48px;
72+
text-align: center;
73+
}
74+
6675
button {
6776
background-color: $orange-dark;
6877
border: 0.75px solid #ffffff;

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

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,6 @@ export class AppCta {
1818
<p>
1919
<app-translate keyword="cta.subTitle" />
2020
</p>
21-
<h2>
22-
<app-translate keyword="cta.text" />
23-
</h2>
2421
<stencil-route-link url="/contact">
2522
<button class="button">
2623
<app-translate keyword="cta.link" />

src/components/app-footer/app-footer.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,9 @@ export class AppFooter {
4343
<div class="footer--column col-12 col-sm-4">
4444
<h2>{translate('footer.webinar.signup')}</h2>
4545
<p>{translate('footer.webinar.webinarText')}</p>
46-
<a href="http://startupjunto.org/" target="_blank" id="startup-junto meetup" rel="noopener" class="btn-primary button-link">
46+
{/* <a href="http://startupjunto.org/" target="_blank" id="startup-junto meetup" rel="noopener" class="btn-primary button-link">
4747
{translate('footer.webinar.register')}
48-
</a>
48+
</a> */}
4949
</div>
5050
</div>
5151

src/components/app-nav-header/app-nav-header.scss

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,9 @@ button.navbar-toggler {
2626
}
2727

2828
nav.navbar .navbar-nav .nav-item {
29+
.active {
30+
color: $orange;
31+
}
2932
text-align: left;
3033

3134
@include media-breakpoint-down(md) {
@@ -123,6 +126,9 @@ nav.navbar .navbar-nav .nav-link {
123126
margin-top: 0.5rem;
124127
margin-bottom: 1.5rem;
125128
}
129+
&.active {
130+
color: $orange;
131+
}
126132
}
127133
}
128134

src/components/app-nav-header/app-nav-header.tsx

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -78,10 +78,19 @@ export class AppNavHeader {
7878
</stencil-route-link>
7979
</li>
8080
<li class="nav-item dropdown" data-target="#navbarSupportedContent">
81-
<a href="" class="nav-link dropdown-toggle" id="navbarDropdown1" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
81+
<stencil-route-link
82+
urlMatch={['/blog', '/forge']}
83+
activeClass="active"
84+
anchorClass="nav-link dropdown-toggle"
85+
id="navbarDropdown0"
86+
role="button"
87+
data-toggle="dropdown"
88+
aria-haspopup="true"
89+
aria-expanded="false"
90+
>
8291
{translate('nav.links.resources')}
83-
</a>
84-
<div class="dropdown-menu" aria-labelledby="navbarDropdown1">
92+
</stencil-route-link>
93+
<div class="dropdown-menu" aria-labelledby="navbarDropdown0">
8594
<stencil-route-link url="/blog" anchorClass="nav-link dropdown-item" activeClass="active">
8695
Blog
8796
</stencil-route-link>

src/pages/app-about/app-about.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@
7272
line-height: 34px;
7373
}
7474

75-
p {
75+
p.about-text {
7676
@include media-breakpoint-down(md) {
7777
color: #5d534e;
7878
margin-bottom: 1rem;

src/pages/app-about/app-about.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ export class AppAbout {
2929
<app-translate class="d-none d-md-block" keyword="about.header.title" />
3030
<app-translate class="d-block d-md-none" keyword="about.header.titleSmall" />
3131
</h1>
32-
<p>
32+
<p class="about-text">
3333
<app-translate keyword="about.header.text" />
3434
</p>
3535
<app-img class="d-block d-md-none" src="../../assets/svg/about-graphic-header.svg" />
@@ -46,7 +46,7 @@ export class AppAbout {
4646
<app-translate keyword="about.values.title" />
4747
</span>
4848
</h2>
49-
<p>
49+
<p class="about-text">
5050
<app-translate keyword="about.values.text" />
5151
</p>
5252
</div>

src/pages/app-contact/app-contact.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ export class AppContact {
169169

170170
<app-input
171171
name="phone"
172-
label={translate('contact.form.phone')}
172+
label={translate('contact.form.contact_phone')}
173173
id="phone"
174174
type="tel"
175175
placeholder={translate('contact.form.placeholder.phone')}

src/pages/app-opportunities/app-opportunities.scss

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@
4242
background-size: contain;
4343
margin-top: 0;
4444
padding-top: 50px;
45+
background-position: bottom;
4546
height: 100vh;
4647
background-image: url('/assets/opportunities/opportunities-mobile-transition-dev.svg');
4748
}
@@ -62,6 +63,7 @@
6263
background-size: contain;
6364
margin-top: 0;
6465
padding-top: 50px;
66+
background-position: bottom;
6567
height: 100vh;
6668
background-image: url('/assets/opportunities/opportunities-mobile-transition-design.svg');
6769
}
@@ -82,6 +84,7 @@
8284
background-size: contain;
8385
margin-top: 0;
8486
padding-top: 50px;
87+
background-position: bottom;
8588
height: 100vh;
8689
background-image: url('/assets/opportunities/opportunities-mobile-transition-dev-design.svg');
8790
}
@@ -102,6 +105,7 @@
102105
background-size: contain;
103106
margin-top: 0;
104107
padding-top: 50px;
108+
background-position: bottom;
105109
height: 100vh;
106110
background-image: url('/assets/opportunities/opportunities-mobile-transition-design-dev.svg');
107111
}
@@ -121,6 +125,7 @@
121125
@include media-breakpoint-down(sm) {
122126
background-size: contain;
123127
margin-top: 0;
128+
background-position: bottom;
124129
padding-top: 50px;
125130
height: 100vh;
126131
background-image: url('/assets/opportunities/opportunities-mobile-dev-active.svg');
@@ -142,6 +147,7 @@
142147
background-size: contain;
143148
margin-top: 0;
144149
padding-top: 50px;
150+
background-position: bottom;
145151
height: 100vh;
146152
background-image: url('/assets/opportunities/opportunities-mobile-design-active.svg');
147153
}

0 commit comments

Comments
 (0)