-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFighterJets.js
More file actions
477 lines (461 loc) · 15.4 KB
/
FighterJets.js
File metadata and controls
477 lines (461 loc) · 15.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
import React from 'react'
import Typography from '@material-ui/core/Typography';
import Grid from '@material-ui/core/Grid'
import { makeStyles } from '@material-ui/core/styles';
import Card from '@material-ui/core/Card';
import CardActionArea from '@material-ui/core/CardActionArea';
import CardActions from '@material-ui/core/CardActions';
import CardContent from '@material-ui/core/CardContent';
import CardMedia from '@material-ui/core/CardMedia';
import Button from '@material-ui/core/Button';
import Paper from '@material-ui/core/Paper'
import { red } from '@material-ui/core/colors';
const useStyles = makeStyles(theme => ({
root: {
padding: theme.spacing(3, 2),
maxWidth: 1200,
marginLeft: 70,
backgroundColor: "rgb(100,250,250)",
},
card: {
backgroundColor: "rgb(200,250,250)",
maxWidth: 345,
padding: 10,
height: 450,
},
media: {
height: 200,
},
}));
function FighterJets(props){
const classes = useStyles();
return(
<Paper className={classes.root}>
<Typography variant="h4" component="h5">
Fighter Jets
</Typography>
<br/>
<Grid container>
<Grid item xs={12} sm={3}>
<Card className={classes.card}>
<CardActionArea>
<CardMedia
className={classes.media}
image="F160.jpg"
title="gun1"
/>
<CardContent>
<Typography gutterBottom variant="h5" component="h2">
F-16
</Typography>
<Typography variant="body2" color="textSecondary" component="p">
The General Dynamics F-16 Fighting Falcon is a single-engine supersonic multirole fighter aircraft originally developed by General Dynamics (its aviation unit now part of Lockheed Martin) for the United States Air Force (USAF). </Typography>
</CardContent>
</CardActionArea>
<CardActions>
<Button size="small" color="primary">
Share
</Button>
<Button size="small" color="primary">
Learn More
</Button>
</CardActions>
</Card>
</Grid>
<Grid item xs={12} sm={3}>
<Card className={classes.card}>
<CardActionArea>
<CardMedia
className={classes.media}
image="f22raptor.jpeg"
title="gun1"
/>
<CardContent>
<Typography gutterBottom variant="h5" component="h2">
F-22 Raptor
</Typography>
<Typography variant="body2" color="textSecondary" component="p">
The Lockheed Martin F-22 Raptor is a fifth-generation, single-seat, twin-engine, all-weather stealth tactical fighter aircraft developed for the United States Air Force (USAF).
</Typography>
</CardContent>
</CardActionArea>
<CardActions>
<Button size="small" color="primary">
Share
</Button>
<Button size="small" color="primary">
Learn More
</Button>
</CardActions>
</Card>
</Grid>
<Grid item xs={12} sm={3}>
<Card className={classes.card}>
<CardActionArea>
<CardMedia
className={classes.media}
image="euro.jpg"
title="gun1"
/>
<CardContent>
<Typography gutterBottom variant="h5" component="h2">
Eurofighter Typhoon
</Typography>
<Typography variant="body2" color="textSecondary" component="p">
The Eurofighter Typhoon is a twin-engine, canard–delta wing, multirole fighter. The Typhoon was designed originally as an air superiority fighter</Typography>
</CardContent>
</CardActionArea>
<CardActions>
<Button size="small" color="primary">
Share
</Button>
<Button size="small" color="primary">
Learn More
</Button>
</CardActions>
</Card>
</Grid>
<Grid item xs={12} sm={3}>
<Card className={classes.card}>
<CardActionArea>
<CardMedia
className={classes.media}
image="rafale.jpg"
title="gun1"
/>
<CardContent>
<Typography gutterBottom variant="h5" component="h2">
Dassault Rafale
</Typography>
<Typography variant="body2" color="textSecondary" component="p">
A French twin-engine, canard delta wing, multirole fighter aircraft designed and built by Dassault Aviation. Equipped with a wide range of weapons </Typography>
</CardContent>
</CardActionArea>
<CardActions>
<Button size="small" color="primary">
Share
</Button>
<Button size="small" color="primary">
Learn More
</Button>
</CardActions>
</Card>
</Grid>
<Grid item xs={12} sm={3}>
<Card className={classes.card}>
<CardActionArea>
<CardMedia
className={classes.media}
image="f15e.jpg"
title="gun1"
/>
<CardContent>
<Typography gutterBottom variant="h5" component="h2">
F-15E Strike Eagle
</Typography>
<Typography variant="body2" color="textSecondary" component="p">
The McDonnell Douglas (now Boeing) F-15E Strike Eagle is an American all-weather multirole strike fighter derived from the McDonnell Douglas F-15 Eagle. </Typography>
</CardContent>
</CardActionArea>
<CardActions>
<Button size="small" color="primary">
Share
</Button>
<Button size="small" color="primary">
Learn More
</Button>
</CardActions>
</Card>
</Grid>
<Grid item xs={12} sm={3}>
<Card className={classes.card}>
<CardActionArea>
<CardMedia
className={classes.media}
image="mirage.jpg"
title="gun1"
/>
<CardContent>
<Typography gutterBottom variant="h5" component="h2">
Mirage
</Typography>
<Typography variant="body2" color="textSecondary" component="p">
The Dassault Mirage 2000 is a French multirole, single-engine fourth-generation jet fighter manufactured by Dassault Aviation. It was designed in the late 1970s as a lightweight fighter</Typography>
</CardContent>
</CardActionArea>
<CardActions>
<Button size="small" color="primary">
Share
</Button>
<Button size="small" color="primary">
Learn More
</Button>
</CardActions>
</Card>
</Grid>
<Grid item xs={12} sm={3}>
<Card className={classes.card}>
<CardActionArea>
<CardMedia
className={classes.media}
image="sukhoi.jpg"
title="gun1"
/>
<CardContent>
<Typography gutterBottom variant="h5" component="h2">
Sukhoi
</Typography>
<Typography variant="body2" color="textSecondary" component="p">
A twinjet multirole air superiority fighter developed by Russia's Sukhoi and built under licence by India's Hindustan Aeronautics Limited (HAL) for the Indian Air Force (IAF).</Typography>
</CardContent>
</CardActionArea>
<CardActions>
<Button size="small" color="primary">
Share
</Button>
<Button size="small" color="primary">
Learn More
</Button>
</CardActions>
</Card>
</Grid>
<Grid item xs={12} sm={3}>
<Card className={classes.card}>
<CardActionArea>
<CardMedia
className={classes.media}
image="mikoyan.jpg"
title="gun1"
/>
<CardContent>
<Typography gutterBottom variant="h5" component="h2">
MiG-21
</Typography>
<Typography variant="body2" color="textSecondary" component="p">
It is a supersonic jet fighter and interceptor aircraft, designed by the Mikoyan-Gurevich Design Bureau in the Soviet Union. </Typography>
</CardContent>
</CardActionArea>
<CardActions>
<Button size="small" color="primary">
Share
</Button>
<Button size="small" color="primary">
Learn More
</Button>
</CardActions>
</Card>
</Grid>
<br/>
<Grid item xs={12} sm={3}>
<Card className={classes.card}>
<CardActionArea>
<CardMedia
className={classes.media}
image="mig29.jpg"
title="gun1"
/>
<CardContent>
<Typography gutterBottom variant="h5" component="h2">
Micoyan MiG-29
</Typography>
<Typography variant="body2" color="textSecondary" component="p">
Is a twin-engine jet fighter aircraft designed in the Soviet Union. Developed by the Mikoyan design bureau as an air superiority fighter during the 1970s </Typography>
</CardContent>
</CardActionArea>
<CardActions>
<Button size="small" color="primary">
Share
</Button>
<Button size="small" color="primary">
Learn More
</Button>
</CardActions>
</Card>
</Grid>
<Grid item xs={12} sm={3}>
<Card className={classes.card}>
<CardActionArea>
<CardMedia
className={classes.media}
image="jas39.jpg"
title="gun1"
/>
<CardContent>
<Typography gutterBottom variant="h5" component="h2">
JAS-39 Griper
</Typography>
<Typography variant="body2" color="textSecondary" component="p">
Is a light single-engine multirole fighter aircraft manufactured by the Swedish aerospace company Saab. It was designed to replace the Saab 35 Draken and 37 Viggen </Typography>
</CardContent>
</CardActionArea>
<CardActions>
<Button size="small" color="primary">
Share
</Button>
<Button size="small" color="primary">
Learn More
</Button>
</CardActions>
</Card>
</Grid>
<Grid item xs={12} sm={3}>
<Card className={classes.card}>
<CardActionArea>
<CardMedia
className={classes.media}
image="f14.jpg"
title="gun1"
/>
<CardContent>
<Typography gutterBottom variant="h5" component="h2">
F-14 TomCat
</Typography>
<Typography variant="body2" color="textSecondary" component="p">
The Grumman F-14 Tomcat is an American supersonic, twin-engine, two-seat, twin-tail, variable-sweep wing fighter aircraft. It was the first such U.S. jet fighter with twin tails. </Typography>
</CardContent>
</CardActionArea>
<CardActions>
<Button size="small" color="primary">
Share
</Button>
<Button size="small" color="primary">
Learn More
</Button>
</CardActions>
</Card>
</Grid>
<Grid item xs={12} sm={3}>
<Card className={classes.card}>
<CardActionArea>
<CardMedia
className={classes.media}
image="j7_new.jpg"
title="gun1"
/>
<CardContent>
<Typography gutterBottom variant="h5" component="h2">
Chengdu J-7
</Typography>
<Typography variant="body2" color="textSecondary" component="p">
It is a People's Republic of China license-built version of the Soviet Mikoyan-Gurevich MiG-21. </Typography>
</CardContent>
</CardActionArea>
<CardActions>
<Button size="small" color="primary">
Share
</Button>
<Button size="small" color="primary">
Learn More
</Button>
</CardActions>
</Card>
</Grid>
<Grid item xs={12} sm={3}>
<Card className={classes.card}>
<CardActionArea>
<CardMedia
className={classes.media}
image="mig23.jpg"
title="gun1"
/>
<CardContent>
<Typography gutterBottom variant="h5" component="h2">
MiG-23 Flogger
</Typography>
<Typography variant="body2" color="textSecondary" component="p">
A variable-geometry fighter aircraft, designed by the Mikoyan-Gurevich design bureau in the Soviet Union. It is a third-generation jet fighter</Typography>
</CardContent>
</CardActionArea>
<CardActions>
<Button size="small" color="primary">
Share
</Button>
<Button size="small" color="primary">
Learn More
</Button>
</CardActions>
</Card>
</Grid>
<Grid item xs={12} sm={3}>
<Card className={classes.card}>
<CardActionArea>
<CardMedia
className={classes.media}
image="mig15.jpg"
title="gun1"
/>
<CardContent>
<Typography gutterBottom variant="h5" component="h2">
MiG-15
</Typography>
<Typography variant="body2" color="textSecondary" component="p">
It is a jet fighter aircraft developed by Mikoyan-Gurevich for the Soviet Union. The MiG-15 was one of the first successful jet fighters to incorporate swept wings to achieve high transonic speeds. </Typography>
</CardContent>
</CardActionArea>
<CardActions>
<Button size="small" color="primary">
Share
</Button>
<Button size="small" color="primary">
Learn More
</Button>
</CardActions>
</Card>
</Grid>
<Grid item xs={12} sm={3}>
<Card className={classes.card}>
<CardActionArea>
<CardMedia
className={classes.media}
image="tejas.jpg"
title="gun1"
/>
<CardContent>
<Typography gutterBottom variant="h5" component="h2">
Tejas
</Typography>
<Typography variant="body2" color="textSecondary" component="p">
The HAL Tejas is an Indian single-engine, delta wing, multirole light fighter designed by the Aeronautical Development Agency (ADA) and Hindustan Aeronautics Limited (HAL) for the Indian Air Force and Indian Navy.</Typography>
</CardContent>
</CardActionArea>
<CardActions>
<Button size="small" color="primary">
Share
</Button>
<Button size="small" color="primary">
Learn More
</Button>
</CardActions>
</Card>
</Grid>
<Grid item xs={12} sm={3}>
<Card className={classes.card}>
<CardActionArea>
<CardMedia
className={classes.media}
image="jaguar.jpg"
title="gun1"
/>
<CardContent>
<Typography gutterBottom variant="h5" component="h2">
Jaguar
</Typography>
<Typography variant="body2" color="textSecondary" component="p">
The SEPECAT Jaguar is a British-French jet attack aircraft originally used by the British Royal Air Force and the French Air Force in the close air support and nuclear strike role.</Typography>
</CardContent>
</CardActionArea>
<CardActions>
<Button size="small" color="primary">
Share
</Button>
<Button size="small" color="primary">
Learn More
</Button>
</CardActions>
</Card>
</Grid>
</Grid>
</Paper>
)
}
export default FighterJets;