-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathrevolution.js
890 lines (883 loc) · 30.3 KB
/
revolution.js
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
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
import React from "react";
import Head from "next/head";
import Lottie from "react-lottie";
import { makeStyles, useTheme } from "@material-ui/core/styles";
import Grid from "@material-ui/core/Grid";
import Typography from "@material-ui/core/Typography";
import useMediaQuery from "@material-ui/core/useMediaQuery";
import technologyAnimation from "../src/animations/technologyAnimation/data.json";
import CallToAction from "../src/ui/CallToAction";
import { LazyLoadImage } from "react-lazy-load-image-component";
const useStyles = makeStyles((theme) => ({
rowContainer: {
paddingLeft: "5em",
paddingRight: "5em",
[theme.breakpoints.down("sm")]: {
paddingLeft: "1.5em",
paddingRight: "1.5em",
},
},
}));
export default function Revolution(props) {
const classes = useStyles();
const theme = useTheme();
const matchesMD = useMediaQuery(theme.breakpoints.down("md"));
const matchesSM = useMediaQuery(theme.breakpoints.down("sm"));
const defaultOptions = {
loop: true,
autoplay: true,
animationData: technologyAnimation,
rendererSettings: {
preserveAspectRatio: "xMidYMid slice",
},
};
return (
<Grid container direction="column">
<Head>
<title key="title">
The Revolution of Software Starts Here | Arc Development
</title>
<meta
name="description"
key="description"
content="The revolution for the custom software design and development starts from here. Make an estimate now and bring revolution to your business."
/>
<meta
property="og:title"
content="Bringin West Coast Technology to the Midwest | The Revolution"
key="og:title"
/>
<meta property="og:url" key="og:url" content="/revolution" />
<link rel="canonical" key="canonical" href="/revolution" />
</Head>
<Grid item className={classes.rowContainer} style={{ marginTop: "2em" }}>
<Typography
align={matchesMD ? "center" : undefined}
variant="h1"
style={{ fontFamily: "Pacifico" }}
>
The Revolution
</Typography>
</Grid>
{/* Vision Block */}
<Grid
item
container
direction={matchesMD ? "column" : "row"}
alignItems="center"
className={classes.rowContainer}
style={{ marginTop: "5em" }}
>
<Grid item lg>
<LazyLoadImage
threshold={400}
age
src="/assets/vision.svg"
alt="Mountain through binoculars"
style={{
maxWidth: matchesSM ? 300 : "40em",
marginRight: matchesMD ? 0 : "5em",
marginBottom: matchesMD ? "5em" : 0,
}}
/>
</Grid>
<Grid item container direction="column" lg style={{ maxWidth: "40em" }}>
<Grid item>
<Typography
align={matchesMD ? "center" : "right"}
variant="h4"
gutterBottom
>
Vision
</Typography>
</Grid>
<Grid item>
<Typography
align={matchesMD ? "center" : "right"}
variant="body1"
paragraph
>
The rise of computers, and subsequently the Internet, has
completely altered every aspect of human life. This has increased
our comfort, broadened our connections, and reshaped how we view
the world.
</Typography>
<Typography
align={matchesMD ? "center" : "right"}
variant="body1"
paragraph
>
What once was confined to huge rooms and teams of engineers now
resides in every single one of our hands. Harnessing this
unlimited potential by using it to solve problems and better lives
is at the heart of everything we do.
</Typography>
<Typography
align={matchesMD ? "center" : "right"}
variant="body1"
paragraph
>
We want to help businesses capitalize on the latest and greatest
technology. The best way to predict the future is to be the one
building it, and we want to help guide the world into this next
chapter of technological expansion, exploration, and innovation.
</Typography>
<Typography
align={matchesMD ? "center" : "right"}
variant="body1"
paragraph
>
By holding ourselves to rigorous standards and pristine quality,
we can ensure you have the absolute best tools necessary to thrive
in this new frontier.
</Typography>
<Typography
align={matchesMD ? "center" : "right"}
variant="body1"
paragraph
>
We see a future where every individual has personalized software
custom tailored to their lifestyle, culture, and interests,
helping them overcome life’s obstacles. Each project is a step
towards that goal.
</Typography>
</Grid>
</Grid>
</Grid>
{/* Technology Block */}
<Grid
item
container
direction={matchesMD ? "column" : "row"}
alignItems="center"
className={classes.rowContainer}
style={{ marginTop: "10em", marginBottom: "10em" }}
>
<Grid item container direction="column" lg style={{ maxWidth: "40em" }}>
<Grid item>
<Typography
align={matchesMD ? "center" : undefined}
variant="h4"
gutterBottom
>
Technology
</Typography>
</Grid>
<Grid item>
<Typography
align={matchesMD ? "center" : undefined}
variant="body1"
paragraph
>
In 2013, Facebook invented a new way of building websites. This
new system, React.js, completely revolutionizes the process and
practice of website development.
</Typography>
<Typography
align={matchesMD ? "center" : undefined}
variant="body1"
paragraph
>
Instead of chaining together long individual pages, like
traditional websites, React websites are built with little chunks
of code called components. These components are faster, easier to
maintain, and are easily reused and customized, each serving a
singular purpose.
</Typography>
<Typography
align={matchesMD ? "center" : undefined}
variant="body1"
paragraph
>
Two years later they shocked the world by releasing a similar
system, React Native, for producing iOS and Android apps. Instead
of having to master two completely separate development platforms,
you can leverage the knowledge you already possessed from building
websites and reapply it directly! This was a huge leap forward.
</Typography>
<Typography
align={matchesMD ? "center" : undefined}
variant="body1"
paragraph
>
This technology is now being used by companies like AirBnB,
Microsoft, Netflix, Pinterest, Skype, Tesla, UberEats, and when
Facebook purchased Instagram large portions of it were even
rebuilt using React.
</Typography>
<Typography
align={matchesMD ? "center" : undefined}
variant="body1"
paragraph
>
Developers have since built on top of these systems by automating
project setup and deployment, allowing creators to focus as much
as possible on their work itself.
</Typography>
<Typography
align={matchesMD ? "center" : undefined}
variant="body1"
paragraph
>
These technical advancements translate into savings by
significantly reducing the workload and streamlining the workflow
for developing new pieces of software, while also lowering the
barrier to entry for mobile app development.
</Typography>
<Typography
align={matchesMD ? "center" : undefined}
variant="body1"
paragraph
>
This puts personalization in your pocket — faster, better, and
more affordable than ever before.
</Typography>
</Grid>
</Grid>
<Grid item container justify={matchesMD ? "center" : "flex-end"} lg>
<Lottie
options={defaultOptions}
style={{ maxWidth: "40em", margin: 0 }}
/>
</Grid>
</Grid>
{/* Process Block */}
<Grid
item
container
direction="row"
justify="center"
className={classes.rowContainer}
>
<Grid item>
<Typography variant="h4" gutterBottom>
Process
</Typography>
</Grid>
</Grid>
{/* Consultation Block */}
<Grid
item
container
direction={matchesMD ? "column" : "row"}
className={classes.rowContainer}
style={{ backgroundColor: "#B3B3B3", height: "90em" }}
>
<Grid
item
container
direction="column"
alignItems={matchesMD ? "center" : undefined}
lg
>
<Grid item>
<Typography
variant="h4"
align={matchesMD ? "center" : undefined}
gutterBottom
style={{ color: "#000", marginTop: "5em" }}
>
Consultation
</Typography>
</Grid>
<Grid item>
<Typography
variant="body1"
align={matchesMD ? "center" : undefined}
style={{ color: "#fff", maxWidth: "20em" }}
paragraph
>
Our process begins the moment you realize you need a piece of
technology for your business. Whether you already have an idea for
where to start and what to do, or if you just know you want to
step things up, our initial consultation will help you examine
your business holistically to find the best solutions.
</Typography>
<Typography
variant="body1"
align={matchesMD ? "center" : undefined}
style={{ color: "#fff", maxWidth: "20em" }}
paragraph
>
Detailed notes will be taken on your requirements and constraints,
while taking care to identify other potential areas for
consideration.
</Typography>
<Typography
variant="body1"
align={matchesMD ? "center" : undefined}
style={{ color: "#fff", maxWidth: "20em" }}
paragraph
>
Cutting-edge advancements in machine learning like object
detection and natural language processing allow computers to do
things previously unimaginable, and our expertise and intuition
will help usher you into this new future of possibilities.
</Typography>
</Grid>
</Grid>
<Grid item lg style={{ alignSelf: "center" }}>
<LazyLoadImage
threshold={400}
src="/assets/consultationIcon.svg"
alt="handshake"
width="100%"
style={{ maxWidth: 700 }}
/>
</Grid>
</Grid>
{/* Mockup Block */}
<Grid
item
container
direction={matchesMD ? "column" : "row"}
className={classes.rowContainer}
style={{ backgroundColor: "#FF7373", height: "90em" }}
>
<Grid
item
container
direction="column"
alignItems={matchesMD ? "center" : undefined}
lg
>
<Grid item>
<Typography
variant="h4"
align={matchesMD ? "center" : undefined}
gutterBottom
style={{ color: "#000", marginTop: "5em" }}
>
Mockup
</Typography>
</Grid>
<Grid item>
<Typography
variant="body1"
align={matchesMD ? "center" : undefined}
style={{ color: "#fff", maxWidth: "20em" }}
paragraph
>
After we settle on the best path forward and decide on a solution
to pursue, details like the cost and timeline will be finalized.
</Typography>
<Typography
variant="body1"
align={matchesMD ? "center" : undefined}
style={{ color: "#fff", maxWidth: "20em" }}
paragraph
>
Then it’s time for us to start on your minimum viable product.
That’s just a fancy term for a mockup, which doesn’t include
colors, images, or any other polished design elements, but
captures the essential layout structure and functionality.
</Typography>
<Typography
variant="body1"
align={matchesMD ? "center" : undefined}
style={{ color: "#fff", maxWidth: "20em" }}
paragraph
>
This helps us understand and refine the solution itself before
getting distracted by specifics and looks.
</Typography>
</Grid>
</Grid>
<Grid item lg style={{ alignSelf: "center" }}>
<LazyLoadImage
threshold={400}
src="/assets/mockupIcon.svg"
alt="basic website design outline"
width="100%"
style={{ maxWidth: 1000 }}
/>
</Grid>
</Grid>
{/* Review Block */}
<Grid
item
container
direction={matchesMD ? "column" : "row"}
className={classes.rowContainer}
style={{ backgroundColor: "#39B54A", height: "90em" }}
>
<Grid
item
container
direction="column"
alignItems={matchesMD ? "center" : undefined}
lg
>
<Grid item>
<Typography
variant="h4"
align={matchesMD ? "center" : undefined}
gutterBottom
style={{ color: "#000", marginTop: "5em" }}
>
Review
</Typography>
</Grid>
<Grid item>
<Typography
variant="body1"
align={matchesMD ? "center" : undefined}
style={{ color: "#fff", maxWidth: "20em" }}
paragraph
>
Before moving any farther we come back to you with our progress.
This gives you the freedom to discuss any changes you may want or
any ideas you may have come up with before any heavy lifting has
been done.
</Typography>
<Typography
variant="body1"
align={matchesMD ? "center" : undefined}
style={{ color: "#fff", maxWidth: "20em" }}
paragraph
>
We give you an interactive demonstration of the mockups,
thoroughly explaining the thought process that went into each
screen and every anticipated feature.
</Typography>
<Typography
variant="body1"
align={matchesMD ? "center" : undefined}
style={{ color: "#fff", maxWidth: "20em" }}
paragraph
>
Once you’re completely satisfied with the vision for our solution
we get down to the nitty gritty, fine-details of design.
</Typography>
</Grid>
</Grid>
<Grid item lg style={{ alignSelf: "center" }}>
<LazyLoadImage
threshold={400}
src="/assets/reviewIcon.svg"
alt="magnifying glass"
width="100%"
/>
</Grid>
</Grid>
{/* Design Block */}
<Grid
item
container
direction={matchesMD ? "column" : "row"}
className={classes.rowContainer}
style={{ backgroundColor: "#A67C52", height: "90em" }}
>
<Grid
item
container
direction="column"
alignItems={matchesMD ? "center" : undefined}
lg
>
<Grid item>
<Typography
variant="h4"
align={matchesMD ? "center" : undefined}
gutterBottom
style={{ color: "#000", marginTop: "5em" }}
>
Design
</Typography>
</Grid>
<Grid item>
<Typography
variant="body1"
align={matchesMD ? "center" : undefined}
style={{ color: "#fff", maxWidth: "20em" }}
paragraph
>
Using the mockups and notes taken during the consultation as
guides, we will start ironing out what the final product will look
like. This also involves using any brand material like fonts,
colors, and logos to extend the experience you’re already familiar
with.
</Typography>
<Typography
variant="body1"
align={matchesMD ? "center" : undefined}
style={{ color: "#fff", maxWidth: "20em" }}
paragraph
>
No aspect is superfluous, and care will be taken with every
decision.
</Typography>
</Grid>
</Grid>
<Grid item lg style={{ alignSelf: "center" }}>
<LazyLoadImage
threshold={400}
src="/assets/designIcon.svg"
alt="paint brush leaving stroke of paint"
width="100%"
style={{ maxWidth: 1000 }}
/>
</Grid>
</Grid>
{/* Another Review Block */}
<Grid
item
container
direction={matchesMD ? "column" : "row"}
className={classes.rowContainer}
style={{ backgroundColor: "#39B54A", height: "90em" }}
>
<Grid
item
container
direction="column"
alignItems={matchesMD ? "center" : undefined}
lg
>
<Grid item>
<Typography
variant="h4"
align={matchesMD ? "center" : undefined}
gutterBottom
style={{ color: "#000", marginTop: "5em" }}
>
Review
</Typography>
</Grid>
<Grid item>
<Typography
variant="body1"
align={matchesMD ? "center" : undefined}
style={{ color: "#fff", maxWidth: "20em" }}
paragraph
>
A second round of review is essential to our goal of creating
exactly what you want, exactly how you want it.
</Typography>
<Typography
variant="body1"
align={matchesMD ? "center" : undefined}
style={{ color: "#fff", maxWidth: "20em" }}
paragraph
>
This time we’ll be going over the finalized designs in another
fully interactive demonstration. Again this gives you an
opportunity to tweak things and make sure we get everything right
the first time.
</Typography>
</Grid>
</Grid>
<Grid item lg style={{ alignSelf: "center" }}>
<LazyLoadImage
threshold={400}
src="/assets/reviewIcon.svg"
alt="magnifying glass"
width="100%"
/>
</Grid>
</Grid>
{/* Build Block */}
<Grid
item
container
direction={matchesMD ? "column" : "row"}
className={classes.rowContainer}
style={{ backgroundColor: "#FBB03B", height: "90em" }}
>
<Grid
item
container
direction="column"
alignItems={matchesMD ? "center" : undefined}
lg
>
<Grid item>
<Typography
variant="h4"
align={matchesMD ? "center" : undefined}
gutterBottom
style={{ color: "#000", marginTop: "5em" }}
>
Build
</Typography>
</Grid>
<Grid item>
<Typography
variant="body1"
align={matchesMD ? "center" : undefined}
style={{ color: "#fff", maxWidth: "20em" }}
paragraph
>
Here’s where we get down to business.
</Typography>
<Typography
variant="body1"
align={matchesMD ? "center" : undefined}
style={{ color: "#fff", maxWidth: "20em" }}
paragraph
>
Engineering begins after your approval on the final designs. We
start by scaffolding out the project on a high level, prioritizing
some areas over others.
</Typography>
<Typography
variant="body1"
align={matchesMD ? "center" : undefined}
style={{ color: "#fff", maxWidth: "20em" }}
paragraph
>
Each area is then developed in order of importance until ready to
be connected to the next piece.
</Typography>
<Typography
variant="body1"
align={matchesMD ? "center" : undefined}
style={{ color: "#fff", maxWidth: "20em" }}
paragraph
>
Typically the backend, behind the scenes operations are completed
first. Once all the services are in place we can then create the
front end, user side of things.
</Typography>
<Typography
variant="body1"
align={matchesMD ? "center" : undefined}
style={{ color: "#fff", maxWidth: "20em" }}
paragraph
>
Finishing the application doesn’t mean we’re done though, because
we use extensive testing to guarantee compatibility with all
intended devices.
</Typography>
<Typography
variant="body1"
align={matchesMD ? "center" : undefined}
style={{ color: "#fff", maxWidth: "20em" }}
paragraph
>
Only after our rigorous examinations will we accept a product as
finished, then pushing it through the production pipeline. This
produces an optimized, compressed, consumer version of the code
and assets ready for deployment.
</Typography>
</Grid>
</Grid>
<Grid item lg style={{ alignSelf: "center" }}>
<LazyLoadImage
threshold={400}
src="/assets/buildIcon.svg"
alt="building construction site"
width="100%"
style={{ maxWidth: matchesMD ? 700 : 1000 }}
/>
</Grid>
</Grid>
{/* Launch Block */}
<Grid
item
container
direction={matchesMD ? "column" : "row"}
className={classes.rowContainer}
style={{ backgroundColor: "#C1272D", height: "90em" }}
>
<Grid
item
container
direction="column"
alignItems={matchesMD ? "center" : undefined}
lg
>
<Grid item>
<Typography
variant="h4"
align={matchesMD ? "center" : undefined}
gutterBottom
style={{ color: "#000", marginTop: "5em" }}
>
Launch
</Typography>
</Grid>
<Grid item>
<Typography
variant="body1"
align={matchesMD ? "center" : undefined}
style={{ color: "#fff", maxWidth: "20em" }}
paragraph
>
The moment we’ve all been waiting for.
</Typography>
<Typography
variant="body1"
align={matchesMD ? "center" : undefined}
style={{ color: "#fff", maxWidth: "20em" }}
paragraph
>
When construction comes to a close you’re the first one to know.
We’ll give our final demonstration to show off your shiny new
software in the wild so you know exactly how it will look to your
users.
</Typography>
<Typography
variant="body1"
align={matchesMD ? "center" : undefined}
style={{ color: "#fff", maxWidth: "20em" }}
paragraph
>
When you say the word, we press the button and launch your project
out to the public. We’re there to ensure everything goes to plan
so you can start reaping the rewards of your technological
investment immediately.
</Typography>
</Grid>
</Grid>
<Grid item lg style={{ alignSelf: "center" }}>
<LazyLoadImage
threshold={400}
src="/assets/launchIcon.svg"
alt="rocket"
width="100%"
style={{ maxWidth: 200 }}
/>
</Grid>
</Grid>
{/* Maintain Block */}
<Grid
item
container
direction={matchesMD ? "column" : "row"}
className={classes.rowContainer}
style={{ backgroundColor: "#8E45CE", height: "90em" }}
>
<Grid
item
container
direction="column"
alignItems={matchesMD ? "center" : undefined}
lg
>
<Grid item>
<Typography
variant="h4"
align={matchesMD ? "center" : undefined}
gutterBottom
style={{ color: "#000", marginTop: "5em" }}
>
Maintain
</Typography>
</Grid>
<Grid item>
<Typography
variant="body1"
align={matchesMD ? "center" : undefined}
style={{ color: "#fff", maxWidth: "20em" }}
paragraph
>
Our work doesn’t end there.
</Typography>
<Typography
variant="body1"
align={matchesMD ? "center" : undefined}
style={{ color: "#fff", maxWidth: "20em" }}
paragraph
>
After a successful launch we keep in close contact to listen to
feedback and hear how the project is being received.
</Typography>
<Typography
variant="body1"
align={matchesMD ? "center" : undefined}
style={{ color: "#fff", maxWidth: "20em" }}
paragraph
>
From there on out we make sure your application is kept up to date
and taking advantage of the best features and practices available.
When new developments arise or new techniques are discovered in
future projects, we will implement those advancements in your
project as part of our routine maintenance.
</Typography>
</Grid>
</Grid>
<Grid item lg style={{ alignSelf: "center" }}>
<LazyLoadImage
threshold={400}
src="/assets/maintainIcon.svg"
alt="wrench tightening bolts"
width="100%"
style={{ maxWidth: 500 }}
/>
</Grid>
</Grid>
{/* Iterate Block */}
<Grid
item
container
direction={matchesMD ? "column" : "row"}
className={classes.rowContainer}
style={{ backgroundColor: "#29ABE2", height: "90em" }}
>
<Grid
item
container
direction="column"
alignItems={matchesMD ? "center" : undefined}
lg
>
<Grid item>
<Typography
variant="h4"
align={matchesMD ? "center" : undefined}
gutterBottom
style={{ color: "#000", marginTop: "5em" }}
>
Iterate
</Typography>
</Grid>
<Grid item>
<Typography
variant="body1"
align={matchesMD ? "center" : undefined}
style={{ color: "#fff", maxWidth: "20em" }}
paragraph
>
The cycle repeats whenever you come up with a new idea for
extending your current project, or come up with a brand new system
entirely.
</Typography>
<Typography
variant="body1"
align={matchesMD ? "center" : undefined}
style={{ color: "#fff", maxWidth: "20em" }}
paragraph
>
By planning for future features and changes we can build and
evolve your application over time. As new use cases and customer
needs develop we can respond with continuous integration of new
content.
</Typography>
<Typography
variant="body1"
align={matchesMD ? "center" : undefined}
style={{ color: "#fff", maxWidth: "20em" }}
paragraph
>
Our iterative process will keep you current and competitive,
allowing you to quickly implement changes instead of waiting
months for a single update.
</Typography>
</Grid>
</Grid>
<Grid item lg style={{ alignSelf: "center" }}>
<LazyLoadImage
threshold={400}
src="/assets/iterateIcon.svg"
alt="falling dominoes"
width="100%"
/>
</Grid>
</Grid>
<Grid item>
<CallToAction setValue={props.setValue} />
</Grid>
</Grid>
);
}