@@ -2,6 +2,7 @@ import classNames from 'classnames';
2
2
import Badge from 'components/Badge/Badge' ;
3
3
import Content from 'components/Content/Content' ;
4
4
import { s3 } from 'common/constants/urls' ;
5
+ import Image from 'next/image' ;
5
6
import styles from './LogoSection.module.css' ;
6
7
7
8
function LogoSection ( ) {
@@ -29,9 +30,11 @@ function LogoSection() {
29
30
< li >
30
31
< Badge
31
32
icon = {
32
- < img
33
+ < Image
33
34
src = { `${ s3 } branding/logos/small-blue-logo.png` }
34
35
alt = "Small Blue Accented Logo"
36
+ width = { 318 }
37
+ height = { 60 }
35
38
/>
36
39
}
37
40
isImageFirst = { false }
@@ -41,9 +44,11 @@ function LogoSection() {
41
44
< li >
42
45
< Badge
43
46
icon = {
44
- < img
47
+ < Image
45
48
src = { `${ s3 } branding/logos/small-red-logo.png` }
46
49
alt = "Small Red Accented Logo"
50
+ width = { 318 }
51
+ height = { 60 }
47
52
/>
48
53
}
49
54
isImageFirst = { false }
@@ -53,9 +58,11 @@ function LogoSection() {
53
58
< li >
54
59
< Badge
55
60
icon = {
56
- < img
61
+ < Image
57
62
src = { `${ s3 } branding/logos/small-logo.png` }
58
63
alt = "Small Unaccented Logo"
64
+ width = { 318 }
65
+ height = { 60 }
59
66
/>
60
67
}
61
68
isImageFirst = { false }
@@ -65,9 +72,11 @@ function LogoSection() {
65
72
< li >
66
73
< Badge
67
74
icon = {
68
- < img
75
+ < Image
69
76
src = { `${ s3 } branding/logos/small-white-logo.png` }
70
77
alt = "Small White Accented Logo"
78
+ width = { 318 }
79
+ height = { 60 }
71
80
/>
72
81
}
73
82
isImageFirst = { false }
@@ -89,9 +98,11 @@ function LogoSection() {
89
98
< li >
90
99
< Badge
91
100
icon = {
92
- < img
101
+ < Image
93
102
src = { `${ s3 } branding/logos/small-stacked-logo-blue.png` }
94
103
alt = "Large Stacked Original"
104
+ width = { 270 }
105
+ height = { 226 }
95
106
/>
96
107
}
97
108
isImageFirst = { false }
@@ -101,9 +112,11 @@ function LogoSection() {
101
112
< li >
102
113
< Badge
103
114
icon = {
104
- < img
115
+ < Image
105
116
src = { `${ s3 } branding/logos/small-stacked-logo-red.png` }
106
117
alt = "Red Stacked Logo"
118
+ width = { 270 }
119
+ height = { 226 }
107
120
/>
108
121
}
109
122
isImageFirst = { false }
@@ -113,9 +126,11 @@ function LogoSection() {
113
126
< li >
114
127
< Badge
115
128
icon = {
116
- < img
129
+ < Image
117
130
src = { `${ s3 } branding/logos/small-stacked-logo.png` }
118
131
alt = "Light Stacked Logo"
132
+ width = { 270 }
133
+ height = { 226 }
119
134
/>
120
135
}
121
136
isImageFirst = { false }
@@ -138,23 +153,40 @@ function LogoSection() {
138
153
< li >
139
154
< Badge
140
155
icon = {
141
- < img src = { `${ s3 } branding/logos/large-blue-medal.png` } alt = "OC Blue Medal" />
156
+ < Image
157
+ src = { `${ s3 } branding/logos/large-blue-medal.png` }
158
+ alt = "OC Blue Medal"
159
+ width = { 300 }
160
+ height = { 404 }
161
+ />
142
162
}
143
163
isImageFirst = { false }
144
164
label = "Blue"
145
165
/>
146
166
</ li >
147
167
< li >
148
168
< Badge
149
- icon = { < img src = { `${ s3 } branding/logos/large-red-medal.png` } alt = "Red Medal" /> }
169
+ icon = {
170
+ < Image
171
+ src = { `${ s3 } branding/logos/large-red-medal.png` }
172
+ alt = "Red Medal"
173
+ width = { 300 }
174
+ height = { 404 }
175
+ />
176
+ }
150
177
isImageFirst = { false }
151
178
label = "Red"
152
179
/>
153
180
</ li >
154
181
< li >
155
182
< Badge
156
183
icon = {
157
- < img src = { `${ s3 } branding/logos/large-slate-medal.png` } alt = "Navy Medal" />
184
+ < Image
185
+ src = { `${ s3 } branding/logos/large-slate-medal.png` }
186
+ alt = "Navy Medal"
187
+ width = { 300 }
188
+ height = { 404 }
189
+ />
158
190
}
159
191
isImageFirst = { false }
160
192
label = "Navy"
@@ -176,7 +208,12 @@ function LogoSection() {
176
208
< li >
177
209
< Badge
178
210
icon = {
179
- < img src = { `${ s3 } branding/logos/large-blue-medal.png` } alt = "OC Blue Badge" />
211
+ < Image
212
+ src = { `${ s3 } branding/logos/large-blue-medal.png` }
213
+ alt = "OC Blue Badge"
214
+ width = { 300 }
215
+ height = { 404 }
216
+ />
180
217
}
181
218
isImageFirst = { false }
182
219
label = "OC Blue Badge"
@@ -185,15 +222,29 @@ function LogoSection() {
185
222
186
223
< li >
187
224
< Badge
188
- icon = { < img src = { `${ s3 } branding/logos/large-red-medal.png` } alt = "Red Badge" /> }
225
+ icon = {
226
+ < Image
227
+ src = { `${ s3 } branding/logos/large-red-medal.png` }
228
+ alt = "Red Badge"
229
+ width = { 300 }
230
+ height = { 404 }
231
+ />
232
+ }
189
233
isImageFirst = { false }
190
234
label = "Red Badge"
191
235
/>
192
236
</ li >
193
237
194
238
< li >
195
239
< Badge
196
- icon = { < img src = { `${ s3 } branding/logos/large-slate-medal.png` } alt = "Navy" /> }
240
+ icon = {
241
+ < Image
242
+ src = { `${ s3 } branding/logos/large-slate-medal.png` }
243
+ alt = "Navy"
244
+ width = { 300 }
245
+ height = { 404 }
246
+ />
247
+ }
197
248
isImageFirst = { false }
198
249
label = "Navy Badge"
199
250
/>
@@ -221,9 +272,11 @@ function LogoSection() {
221
272
< li >
222
273
< Badge
223
274
icon = {
224
- < img
275
+ < Image
225
276
src = { `${ s3 } branding/logos/large-blue-logo.png` }
226
277
alt = "Original Large Logo"
278
+ width = { 384 }
279
+ height = { 70 }
227
280
/>
228
281
}
229
282
isImageFirst = { false }
@@ -234,7 +287,12 @@ function LogoSection() {
234
287
< li >
235
288
< Badge
236
289
icon = {
237
- < img src = { `${ s3 } branding/logos/large-red-logo.png` } alt = "Red Large Logo" />
290
+ < Image
291
+ src = { `${ s3 } branding/logos/large-red-logo.png` }
292
+ alt = "Red Large Logo"
293
+ width = { 384 }
294
+ height = { 70 }
295
+ />
238
296
}
239
297
isImageFirst = { false }
240
298
label = "Red"
@@ -244,9 +302,11 @@ function LogoSection() {
244
302
< li >
245
303
< Badge
246
304
icon = {
247
- < img
305
+ < Image
248
306
src = { `${ s3 } branding/logos/large-logo.png` }
249
307
alt = "Large Unaccented Logo"
308
+ width = { 384 }
309
+ height = { 70 }
250
310
/>
251
311
}
252
312
isImageFirst = { false }
@@ -257,9 +317,11 @@ function LogoSection() {
257
317
< li >
258
318
< Badge
259
319
icon = {
260
- < img
320
+ < Image
261
321
src = { `${ s3 } branding/logos/large-white-logo.png` }
262
322
alt = "Large White Accented Logo"
323
+ width = { 384 }
324
+ height = { 70 }
263
325
/>
264
326
}
265
327
isImageFirst = { false }
0 commit comments