Skip to content

Commit 23c8d28

Browse files
Updated images and added page to nav bar (#1830)
Co-authored-by: Kyle Holmberg <[email protected]>
1 parent 542f383 commit 23c8d28

File tree

9 files changed

+27
-6
lines changed

9 files changed

+27
-6
lines changed

common/constants/navigation.js

+7-1
Original file line numberDiff line numberDiff line change
@@ -85,9 +85,14 @@ const press = {
8585
href: '/press',
8686
};
8787

88+
const corporateTraining = {
89+
name: 'Corporate Training',
90+
href: '/corporate-training',
91+
};
92+
8893
const servicesGroup = {
8994
...services,
90-
sublinks: [podcast, scholarship, projectRebuild],
95+
sublinks: [podcast, scholarship, projectRebuild, corporateTraining],
9196
};
9297

9398
const aboutUsGroup = {
@@ -127,6 +132,7 @@ export const footerItems = {
127132
branding,
128133
services,
129134
team,
135+
corporateTraining,
130136
],
131137
legal: [
132138
{

components/Footer/__tests__/__snapshots__/Footer.test.tsx.snap

+7
Original file line numberDiff line numberDiff line change
@@ -149,6 +149,13 @@ exports[`Footer > should render with no props passed 1`] = `
149149
Our Team
150150
</ForwardRef(LinkComponent)>
151151
</li>
152+
<li>
153+
<ForwardRef(LinkComponent)
154+
href="/corporate-training"
155+
>
156+
Corporate Training
157+
</ForwardRef(LinkComponent)>
158+
</li>
152159
</ul>
153160
</div>
154161
<div

components/Nav/__tests__/__snapshots__/Nav.test.tsx.snap

+8
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,10 @@ exports[`Nav > should render with no props passed 1`] = `
2727
"href": "/project_rebuild",
2828
"name": "Project Rebuild",
2929
},
30+
{
31+
"href": "/corporate-training",
32+
"name": "Corporate Training",
33+
},
3034
{
3135
"href": "/chapters",
3236
"name": "Chapters",
@@ -126,6 +130,10 @@ exports[`Nav > should render with no props passed 1`] = `
126130
"href": "/project_rebuild",
127131
"name": "Project Rebuild",
128132
},
133+
{
134+
"href": "/corporate-training",
135+
"name": "Corporate Training",
136+
},
129137
]
130138
}
131139
/>

pages/corporate-training/index.tsx

+5-5
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ const biases: Bias[] = [
2727
</>
2828
),
2929
image: '/static/images/bias1.jpg',
30-
alt: 'Woman listening to someone talking',
30+
alt: 'soldier sitting on the couch with his head resting on his hands.',
3131
},
3232
{
3333
title: 'Bias #2',
@@ -41,7 +41,7 @@ const biases: Bias[] = [
4141
</>
4242
),
4343
image: '/static/images/bias2.jpg',
44-
alt: 'Woman listening to someone talking',
44+
alt: 'A soldier getting comforted.',
4545
},
4646
{
4747
title: 'Bias #3',
@@ -54,7 +54,7 @@ const biases: Bias[] = [
5454
</>
5555
),
5656
image: '/static/images/bias3.jpg',
57-
alt: 'Woman listening to someone talking',
57+
alt: 'A homeless vet holding a sign for help.',
5858
},
5959
{
6060
title: 'Bias #4',
@@ -77,7 +77,7 @@ const biases: Bias[] = [
7777
</>
7878
),
7979
image: '/static/images/bias4.jpg',
80-
alt: 'Woman listening to someone talking',
80+
alt: 'A soldier shaking hands with someone.',
8181
},
8282
{
8383
title: 'Bias #5',
@@ -102,7 +102,7 @@ const biases: Bias[] = [
102102
</>
103103
),
104104
image: '/static/images/bias5.jpg',
105-
alt: 'Woman listening to someone talking',
105+
alt: 'two wedding rights resting on an american flad patch.',
106106
},
107107
];
108108

public/static/images/bias1.jpg

-154 KB
Loading

public/static/images/bias2.jpg

-180 KB
Loading

public/static/images/bias3.jpg

-249 KB
Loading

public/static/images/bias4.jpg

-150 KB
Loading

public/static/images/bias5.jpg

-238 KB
Loading

0 commit comments

Comments
 (0)