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

Commit 6c3a122

Browse files
committed
fix(): fix feedback
1 parent 336ceaa commit 6c3a122

File tree

9 files changed

+64
-21
lines changed

9 files changed

+64
-21
lines changed
25 KB
Loading
42.4 KB
Loading
-67.4 KB
Loading
-122 KB
Loading
37.3 KB
Loading
84.4 KB
Loading

src/assets/i18n/en.ts

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -438,6 +438,32 @@ export const translations = {
438438
thanks: 'Progressive Web Apps can offer your business an array of benefits and improvements to your web and mobile users that can have a direct impact on your costs and revenue.',
439439
},
440440

441+
ourWork: {
442+
header: {
443+
title: 'Our Work',
444+
text: "Each day we work to make our world better by design. Below you will find examples of projects that we've had the pleasure of working on.",
445+
},
446+
cards: {
447+
mobile_measures: {
448+
title: 'Mobile Measures',
449+
text:
450+
"A Physical Therapist's brainchild; this app aims to help Physical Therapists keep track of their patients' progress. Like many founders and entrepreneurs, Ben's foray into the start-up world started with a simple idea: \"There has to be a better way!\"",
451+
},
452+
loudcloud: {
453+
title: 'LoudCloud',
454+
text:
455+
'This app was designed with privacy in mind. Users can receive and make calls through a temporary and disposable phone number; in over 40 countries! LoudCloud allows for more secure business and social interactions.',
456+
},
457+
voyage: {
458+
title: 'The Voyage',
459+
text:
460+
"Employers can now incentivize their employees to develop and commit to healthy habits thanks to New Ocean Health's unique app. A company-wide social platform where employees can interact & challenge each other to reap the benefits.",
461+
},
462+
button: 'View Project',
463+
},
464+
worked_with: "Who We've Worked With",
465+
},
466+
441467
cta: {
442468
title: 'Got a vision?',
443469
subTitle: `We've got your back.`,

src/pages/app-our-work/app-our-work.scss

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,23 +2,21 @@
22
margin-top: 76px;
33

44
header {
5-
6-
75
section {
86
align-items: center;
97
background-image: url(assets/our-work/our-work-header.svg);
108
background-repeat: no-repeat;
119
display: flex;
1210
flex-direction: column;
1311
justify-content: center;
14-
min-height: 420px;
12+
min-height: 520px;
1513

1614
@include media-breakpoint-down(md) {
17-
height: 350px;
15+
min-height: 350px;
1816
}
19-
17+
2018
@include media-breakpoint-down(sm) {
21-
height: initial;
19+
min-height: initial;
2220
margin-top: calc(3rem + 76px);
2321
background-image: none;
2422
}

src/pages/app-our-work/app-our-work.tsx

Lines changed: 34 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,12 @@ export class AppOurWork {
1010
<div class="our-work">
1111
<header>
1212
<section class="container">
13-
<h1>Our Work</h1>
14-
<p>Each day we work to make our world better by design. Below you will find examples of projects that we've had the pleasure of working on.</p>
13+
<h1>
14+
<app-translate keyword="ourWork.header.title" />
15+
</h1>
16+
<p>
17+
<app-translate keyword="ourWork.header.text" />
18+
</p>
1519
</section>
1620
</header>
1721
<section class="container">
@@ -32,12 +36,15 @@ export class AppOurWork {
3236
</div>
3337
</div>
3438
<div class="card-content">
35-
<h2>Mobile Measures</h2>
39+
<h2>
40+
<app-translate keyword="ourWork.cards.mobile_measures.title" />
41+
</h2>
3642
<p>
37-
A Physical Therapist's brainchild; this app aims to help Physical Therapists keep track of their patients’ progress. Like many founders and entrepreneurs, Ben’s foray into the start-up
38-
world started with a simple idea: "There has to be a better way!"
43+
<app-translate keyword="ourWork.cards.mobile_measures.text" />
3944
</p>
40-
<button>View Project</button>
45+
<button>
46+
<app-translate keyword="ourWork.button" />
47+
</button>
4148
</div>
4249
</div>
4350
</section>
@@ -59,12 +66,15 @@ export class AppOurWork {
5966
</div>
6067
</div>
6168
<div class="card-content">
62-
<h2>LoudCloud</h2>
69+
<h2>
70+
<app-translate keyword="ourWork.cards.loudcloud.title" />
71+
</h2>
6372
<p>
64-
This app was designed with privacy in mind. Users can receive and make calls through a temporary and disposable phone number; in over 40 countries! LoudCloud allows for more secure
65-
business and social interactions.
73+
<app-translate keyword="ourWork.cards.loudcloud.text" />
6674
</p>
67-
<button>View Project</button>
75+
<button>
76+
<app-translate keyword="ourWork.button" />
77+
</button>
6878
</div>
6979
</div>
7080
</section>
@@ -86,29 +96,36 @@ export class AppOurWork {
8696
</div>
8797
</div>
8898
<div class="card-content">
89-
<h2>The Voyage</h2>
99+
<h2>
100+
<app-translate keyword="ourWork.cards.voyage.title" />
101+
</h2>
90102
<p>
91-
Employers can now incentivize their employees to develop and commit to healthy habits thanks to New Ocean Health’s unique app. A company-wide social platform where employees can
92-
interact & challenge each other to reap the benefits.
103+
<app-translate keyword="ourWork.cards.voyage.text" />
93104
</p>
94-
<button>View Project</button>
105+
<button>
106+
<app-translate keyword="ourWork.button" />
107+
</button>
95108
</div>
96109
</div>
97110
</section>
98111
<section id="worked-with" class="worked-with">
99112
<div class="container text-center">
100113
<div class="row header">
101114
<div class="col-12">
102-
<h2>Who We've Worked With</h2>
115+
<h2>
116+
<app-translate keyword="ourWork.worked_with" />
117+
</h2>
103118
</div>
104119
</div>
105120

106121
<div class="row img-row">
107122
<div class="col-md-2 col-6 center-col">
123+
{/* swap with ic3401 */}
108124
<app-img class="img-fluid no-pad" src="/assets/services-logo-bb.png" alt="BB logo" />
109125
</div>
110126

111127
<div class="col-md-2 col-6 center-col">
128+
{/* Swap with omnifan */}
112129
<app-img class="img-fluid no-pad" src="/assets/services-logo-aeris.png" alt="Aeris logo" />
113130
</div>
114131

@@ -127,12 +144,14 @@ export class AppOurWork {
127144
</div>
128145

129146
<div class="col-md-2 col-6 center-col">
147+
{/* swap with gomerchant */}
130148
<app-img class="img-fluid pad" src="/assets/services-logo-wharton.png" alt="Wharton logo" />
131149
</div>
132150
</div>
133151

134152
<div class="row img-row">
135153
<div class="col-md-2 col-6 center-col">
154+
{/* swap with ng atl */}
136155
<app-img class="img-fluid pad" src="/assets/services-logo-redqueen.jpg" alt="RedQueen logo" />
137156
</div>
138157

0 commit comments

Comments
 (0)