-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
901 lines (894 loc) · 42.3 KB
/
index.html
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
891
892
893
894
895
896
897
898
899
900
901
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-COMPATIBLE" content="IE=edge">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<!-- Favicon and Home Button Logo -->
<link href="assets/img/profile-1.png" rel="icon" loading="lazy">
<link href="assets/img/profile-1.png" rel="apple-touch-icon" width="50px" height="50px" alt="The website's logo"
loading="lazy">
<!-- Vendor CSS Stylesheet Files -->
<link href="assets/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="assets/vendor/bootstrap-icons/bootstrap-icons.css" rel="stylesheet">
<link href="assets/vendor/glightbox/css/glightbox.min.css" rel="stylesheet">
<link href="assets/vendor/swiper/swiper-bundle.min.css" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.3.0/css/all.min.css"
integrity="sha512-SzlrxWUlpfuzQ+pcUCosxcglQRNAq/DZjVsC0lE40xsADsfeQoEypE+enwcOiGjk/bSuGGKHEyjSoQ1zVisanQ=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<!-- Main CSS Stylesheet File -->
<link href="./assets/css/style.css" rel="stylesheet">
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-R3YEHZFQS0"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-R3YEHZFQS0');
</script>
<title>Sean Patterson</title>
</head>
<body id="home">
<!-- Start Header Section -->
<header id="header" class="fixed-top">
<div class="container d-flex align-items-center justify-content-between">
<a href="index.html" class="logo"><img src="assets/img/profile-1.png" loading="lazy" width="50px" height="50px"
alt="The website's logo" class="img-fluid"></a>
<nav id="navbar" class="navbar">
<div class="sidebar" id="sidebar">
<div class="tooltip">
<i class="fa fa-file-text"></i>
<p>Cover Letter</p>
<span class="tooltip-text" id="cl">
<object type="application/pdf" menu="false"
data="./assets/docs/1ba Cover Sean Dylan Patterson Front End Web Developer.PDF" width="100%"
height="100%"></object>
</span>
</div>
<div class="tooltip">
<i class="fa fa-briefcase"></i>
<p>CV</p>
<span class="tooltip-text" id="cv">
<object type="application/pdf" menu="false"
data="./assets/docs/2ba CV Sean Dylan Patterson Front End Web Developer.pdf" width="100%"
height="100%"></object>
</span>
</div>
<div class="tooltip">
<i class="fa fa-graduation-cap"></i>
<p>Certifications</p>
<span class="tooltip-text" id="cs">
<object type="application/pdf" menu="false" data="./assets/docs/3 freeCodeCamp Certifications.pdf"
width="100%" height="100%"></object>
</span>
</div>
<div class="tooltip">
<i class="fa fa-id-badge"></i>
<p>ID Book</p>
<span class="tooltip-text" id="id">
<object type="application/pdf" menu="false"
data="./assets/docs/4 RSA ID Sean Dylan Patterson 8207285179084.pdf" width="100%"
height="100%"></object>
</span>
</div>
<div class="tooltip">
<i class="fa fa-medkit"></i>
<p>Vaccine</p>
<span class="tooltip-text" id="vax">
<object type="application/pdf" menu="false" data="./assets/docs/5 Covid 19 Vaccination.pdf" width="100%"
height="100%"></object>
</span>
</div>
</div>
<ul>
<li><a class="nav-link scrollto active" href="#hero">Home</a></li>
<li><a class="nav-link scrollto" href="#about">About</a></li>
<li><a class="nav-link scrollto" href="#services">Services</a></li>
<li><a class="nav-link scrollto" href="#work">Work</a></li>
<li><a class="nav-link scrollto" href="#plans">Plans</a></li>
<li><a class="nav-link scrollto" href="#contact-form">Contact</a></li>
</ul>
<i class="bi bi-list mobile-nav-toggle"></i>
</nav><!-- .navbar -->
</div>
</header><!-- End Header Section -->
<!-- Start Hero Section -->
<div id="hero" class="hero route bg-image" style="background-image: url(/assets/img/hero-bg.jpg)">
<div class="overlay-itro"></div>
<div class="hero-content display-table">
<div class="table-cell">
<div class="container">
<p class="display-6 color-d">hello, World!</p>
<h1 class="hero-title mb-4">I'm Sean</h1>
<p class="hero-subtitle"><span class="typed"
data-typed-items="Designer, Developer, Coder, Freelancer, Learner, Artist, Enthusiast, Student, Stubborn, Opinionated, Loyal, Hardworking, Insightful, Creative, Thoughtful, Considered, Considerate, Amusing, Unamused, Serious, Diligent, Ethical, Innovative, Constructive, a Fiddler, a Leader, Assertive, a Team Player"></span>
</p>
<!-- <p class="pt-3"><a class="btn btn-primary btn js-scroll px-4" href="#about" role="button">More About Me</a></p> -->
</div>
</div>
</div>
</div><!-- End Hero Section -->
<main>
<section id="about" class="about-mf sect-pt4 route"> <!-- Start About Section -->
<div class="container">
<div class="row">
<div class="col-sm-12">
<div class="box-shadow-full">
<div class="row">
<div class="col-md-6">
<div class="row">
<div class="col-sm-6 col-md-5">
<div class="about-img">
<img src="assets/img/sean-dylan-patterson-1.png" loading="lazy"
class="img-fluid rounded b-shadow-a" alt="A profile picture of Sean Dylan Patterson">
</div>
</div>
<div class="col-sm-6 col-md-7">
<div class="about-info">
<p><span class="title-s">Name: </span> <span>Sean Dylan Patterson</span></p>
<p><span class="title-s">Status: </span> <span>Front End Developer</span></p>
<p><span class="title-s">Email: </span> <span> <a
href="mailto:[email protected]">[email protected]</a></span></p>
<p><span class="title-s">Phone: </span> <span> <a href="tel:+27761051443">+2776 105
1443</a></span></p>
</div>
</div>
</div>
<br>
<div class="tech-stack">
<h4>My Tech Stack</h4>
<p class="row">
<div class="pair-box">
<span class="title-s">
<img src="./assets/img/html5.png" alt="html5 logo" loading="lazy">
<span></span>
<img src="./assets/img/css3.png" alt="css3 logo" loading="lazy">
<img src="./assets/img/javascript.png" alt="javascript logo" loading="lazy">
<img src="./assets/img/react.png" alt="react logo" loading="lazy">
<img src="./assets/img/express.png" alt="expressjs logo" loading="lazy">
<img src="./assets/img/nodejs.png" alt="nodejs logo" loading="lazy">
<img src="./assets/img/mongodb.png" alt="mongodb logo" loading="lazy">
</span>
</div>
<div class="pair-box">
<p class="title-s">
<span>HTML5</span>
<span></span>
<span>CSS3</span>
<span>JavaScript</span>
<span>ReactJS</span>
<span>Express</span>
<span>NodeJS</span>
<span>MongoDB</span>
</p>
</div>
</p>
<p class="row">
<div class="pair-box">
<span class="title-s">
<span> </span>
<span> </span>
<span> </span>
<img src="./assets/img/redux.png" alt="redux logo" loading="lazy">
<img src="./assets/img/jquery.png" alt="jquery logo" loading="lazy">
<img src="./assets/img/php.png" alt="php logo" loading="lazy">
<img src="./assets/img/sql.png" alt="sql logo" loading="lazy">
<img src="./assets/img/sass.png" alt="sass logo" loading="lazy">
<img src="./assets/img/bootstrap.png" alt="bootstrap logo" loading="lazy">
</span>
</div>
<div class="pair-box">
<p class="title-s">
<span> </span>
<span> </span>
<span> </span>
<span> Redux </span>
<span> </span>
<span> jQuery </span>
<span> </span>
<span> </span>
<span> PHP </span>
<span> </span>
<span> </span>
<span> SQL </span>
<span> </span>
<span> </span>
<span> Sass </span>
<span> </span>
<span> Bootstrap </span>
</p>
</div>
</p>
<p>
</p>
</div>
</div>
<div class="col-md-6">
<div class="about-me pt-4 pt-md-0">
<div class="title-box-2">
<h5 class="title-left">A bit about me...</h5>
<p> </p>
<p class="lead">
With over 13 years professional working experience in IT/Help Desk roles, of which 6 years in
management at a mid-level position.
I'm an analytical thinker, I'm systematic and methodical and I approach tasks with a eye on the
details. I'm smart, adaptable, and
a quick learner. I take copious notes and thoroughly research clients as well as the company and
the team I'm a part of
to best contribute.
</p><br>
<p class="lead">
Some of my core competencies in a professional office environment: Bilingual Desktop Support,
Flexible and Adaptive,
Attention to Detail, Written Correspondence, Telephone Etiquette, Social Media Account
Management, Content Creation,
MS Office, MS Windows, MS Outlook, Adobe PhotoShop, DreamWeaver, Visual Studio, VS Code, YouTube
Creator Studio and others.
</p><br>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section><!-- End About Section -->
<!-- Start Services Section -->
<section id="services" class="services-mf pt-5 route">
<div class="container">
<div class="row">
<div class="col-sm-12">
<div class="title-box text-center">
<h3 class="title-a">
So What, Exactly, Do I Have to Offer...?
</h3>
<p class="subtitle-a">
Well, here are some of the things I do in a typical day...
Aside from studying to complete the Full Stack Developer Course from freeCodeCamp.com
</p>
<div class="line-mf"></div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-4">
<div class="service-box">
<div class="service-ico">
<span class="ico-circle"><i class="bi bi-palette"></i></span>
</div>
<div class="service-content">
<h2 class="s-title">Web Design</h2>
<p class="s-description text-center">
Everything from conceptualization and planning right through to layout and font selection, I've got
you covered.
</p>
</div>
</div>
</div>
<div class="col-md-4">
<div class="service-box">
<div class="service-ico">
<span class="ico-circle"><i class="bi bi-easel2"></i></span>
</div>
<div class="service-content">
<h2 class="s-title">Web Development</h2>
<p class="s-description text-center">
Looking for something a little more specific, a bit more, niche? Let's discuss where you're going and
let's see how to get you there.
</p>
</div>
</div>
</div>
<div class="col-md-4">
<div class="service-box">
<div class="service-ico">
<span class="ico-circle"><i class="bi bi-body-text"></i></span>
</div>
<div class="service-content">
<h2 class="s-title">Coding</h2>
<p class="s-description text-center">
I am currently studying the Full Stack Developer Course but I've worked with PCs since we were still
writing our own DOS files.
</p>
</div>
</div>
</div>
<div class="col-md-4">
<div class="service-box">
<div class="service-ico">
<span class="ico-circle"><i class="bi bi-columns-gap"></i></span>
</div>
<div class="service-content">
<h2 class="s-title">Responsive Design</h2>
<p class="s-description text-center">
Responsive, Dynamic Web environments, loaded with JavaScript functionality on top of a modern CSS and
HTML5 backbone.
</p>
</div>
</div>
</div>
<div class="col-md-4">
<div class="service-box">
<div class="service-ico">
<span class="ico-circle"><i class="bi bi-webcam"></i></span>
</div>
<div class="service-content">
<h2 class="s-title">Content Creation</h2>
<p class="s-description text-center">
Do you need a few images, maybe a video to really grab your customer's attention? Content creation is
right up my alley too.
</p>
</div>
</div>
</div>
<div class="col-md-4">
<div class="service-box">
<div class="service-ico">
<span class="ico-circle"><i class="bi bi-bullseye"></i></span>
</div>
<div class="service-content">
<h2 class="s-title">Accuracy</h2>
<p class="s-description text-center">
I always aim for 0 errors! Coding or English, frontend or back, visible to users or not, accuracy is
really important to me.
</p>
</div>
</div>
</div>
</div>
</div>
</section><!-- End Services Section -->
<!-- Start Counters Section -->
<div class="section-counter paralax-mf bg-image" style="background-image: url(assets/img/counters-bg.png)">
<div class="overlay-mf"></div>
<div class="container position-relative">
<div class="row">
<div class="col-sm-3 col-lg-3">
<div class="counter-box counter-box pt-4 pt-md-0">
<div class="counter-ico">
<span class="ico-circle"><i class="bi bi-clipboard-check"></i></span>
</div>
<div class="counter-num">
<p data-purecounter-start="0" data-purecounter-end="15" data-purecounter-duration="1"
class="counter purecounter"></p>
<span class="counter-text">Projects Completed</span>
</div>
</div>
</div>
<div class="col-sm-3 col-lg-3">
<div class="counter-box pt-4 pt-md-0">
<div class="counter-ico">
<span class="ico-circle"><i class="bi bi-calendar3"></i></span>
</div>
<div class="counter-num">
<p data-purecounter-start="0" data-purecounter-end="2" data-purecounter-duration="1"
class="counter purecounter"></p>
<span class="counter-text">Years of Experience</span>
</div>
</div>
</div>
<div class="col-sm-3 col-lg-3">
<div class="counter-box pt-4 pt-md-0">
<div class="counter-ico">
<span class="ico-circle"><i class="bi bi-people-fill"></i></span>
</div>
<div class="counter-num">
<p data-purecounter-start="0" data-purecounter-end="5" data-purecounter-duration="1"
class="counter purecounter"></p>
<span class="counter-text">Total Clients Helped</span>
</div>
</div>
</div>
<div class="col-sm-3 col-lg-3">
<div class="counter-box pt-4 pt-md-0">
<div class="counter-ico">
<span class="ico-circle"><i class="bi bi-award-fill"></i></span>
</div>
<div class="counter-num">
<p data-purecounter-start="0" data-purecounter-end="10" data-purecounter-duration="1"
class="counter purecounter"></p>
<span class="counter-text">Tutorials Completed </span>
</div>
</div>
</div>
</div>
</div>
</div><!-- End Counters Section -->
<!-- Start Portfolio Work Section -->
<section id="work" class="portfolio-mf sect-pt4 route">
<div class="container">
<div class="row">
<div class="col-sm-12">
<div class="title-box text-center">
<h3 class="title-a">
My Web Development Portfolio
</h3>
<p class="subtitle-a">
Here are a some of projects I've been involved in, working on and have completed to date...
</p>
<div class="line-mf"></div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-4">
<div class="work-box">
<a href="assets/img/work-1.png" data-gallery="portfolioGallery" class="portfolio-lightbox">
<div class="work-img">
<img src="assets/img/work-1.png"
alt="An image of the developers portfolio work, an NFT Collection called Haptic Hippies"
loading="lazy" class="img-fluid">
</div>
</a>
<div class="work-content">
<div class="row">
<div class="col-sm-8">
<h2 class="w-title">I Created a Collection of 10'000 1:1 NFTs</h2>
<div class="w-more">
<span class="w-ctegory">NFTs [&] Crypto</span> / <span class="w-date">Jan 2022</span>
</div>
</div>
<div class="col-sm-4">
<div class="w-like">
<a href="portfolio-details.html"> <span class="bi bi-coin"></span></a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-md-4">
<div class="work-box">
<a href="assets/img/work-2.png" data-gallery="portfolioGallery" class="portfolio-lightbox">
<div class="work-img">
<img src="assets/img/work-2.png"
alt="An image of the developers portfolio work, an NFT Collection called Grouchy Gorillas"
loading="lazy" class="img-fluid">
</div>
</a>
<div class="work-content">
<div class="row">
<div class="col-sm-8">
<h2 class="w-title">Created an NFT Minting dApp Hosted on IPFS</h2>
<div class="w-more">
<span class="w-ctegory">NFTs, Web Dev</span> / <span class="w-date">Feb 2022</span>
</div>
</div>
<div class="col-sm-4">
<div class="w-like">
<a href="portfolio-details.html"> <span class="bi bi-cash"></span></a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-md-4">
<div class="work-box">
<a href="assets/img/work-3.png" data-gallery="portfolioGallery" class="portfolio-lightbox">
<div class="work-img">
<img src="assets/img/work-3.png"
alt="An image of the developers portfolio work, this portfolio website" loading="lazy"
class="img-fluid">
</div>
</a>
<div class="work-content">
<div class="row">
<div class="col-sm-8">
<h2 class="w-title">I Developed This Portfolio Website</h2>
<div class="w-more">
<span class="w-ctegory">Web Design [&] Dev</span> / <span class="w-date">Mar 2022</span>
</div>
</div>
<div class="col-sm-4">
<div class="w-like">
<a href="portfolio-details.html"> <span class="bi bi-easel2-fill"></span></a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-md-4">
<div class="work-box">
<a href="assets/img/work-4.png" data-gallery="portfolioGallery" class="portfolio-lightbox">
<div class="work-img">
<img src="assets/img/work-4.png"
alt="An image of the developers portfolio work, a basic eCommerce website" loading="lazy"
class="img-fluid">
</div>
</a>
<div class="work-content">
<div class="row">
<div class="col-sm-8">
<h2 class="w-title">Made a Single Product eCommerce Website</h2>
<div class="w-more">
<span class="w-ctegory">Web Design [&] Dev</span> / <span class="w-date">Apr 2022</span>
</div>
</div>
<div class="col-sm-4">
<div class="w-like">
<a href="portfolio-details.html"> <span class="bi bi-shop"></span></a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-md-4">
<div class="work-box">
<a href="assets/img/work-5.png" data-gallery="portfolioGallery" class="portfolio-lightbox">
<div class="work-img">
<img src="assets/img/work-5.png"
alt="An image of the developers portfolio work, a full featured eCommerce website" loading="lazy"
class="img-fluid">
</div>
</a>
<div class="work-content">
<div class="row">
<div class="col-sm-8">
<h2 class="w-title">A Multi-Product eCommerce Website</h2>
<div class="w-more">
<span class="w-ctegory">Web Design [&] Dev</span> / <span class="w-date">May 2022</span>
</div>
</div>
<div class="col-sm-4">
<div class="w-like">
<a href="portfolio-details.html"> <span class="bi bi-shop-window"></span></a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-md-4">
<div class="work-box">
<a href="assets/img/work-6.png" data-gallery="portfolioGallery" class="portfolio-lightbox">
<div class="work-img">
<img src="assets/img/work-6.png"
alt="An image of the developers portfolio work, a stock image of a motivational quote"
loading="lazy" class="img-fluid">
</div>
</a>
<div class="work-content">
<div class="row">
<div class="col-sm-8">
<h2 class="w-title">I Created a Website for a Real Living Client! </h2>
<div class="w-more">
<span class="w-ctegory">Web Design [&] Dev</span> / <span class="w-date">Nov 2021</span>
</div>
</div>
<div class="col-sm-4">
<div class="w-like">
<a href="portfolio-details.html"> <span class="bi bi-person-lines-fill"></span></a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section><!-- End Portfolio Work Section -->
<!-- Start Testimonials/References Section -->
<div class="testimonials paralax-mf bg-image" style="background-image: url(assets/img/overlay-bg.png)">
<div class="overlay-mf"></div>
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="testimonials-slider swiper" data-aos="fade-up" data-aos-delay="100">
<div class="swiper-wrapper">
<div class="swiper-slide">
<div class="testimonial-box">
<div class="author-test">
<img src="assets/img/testimonial-2.png" alt="A profile picture of a man" loading="lazy"
class="rounded-circle b-shadow-a">
<span class="author">Ravindra Laloo-Gopal</span>
</div>
<div class="content-test">
<p class="description lead">
Working with Sean in a junior position can be quite a daunting experience as he's always on top,
things and knows when everything should be happening.
</p>
</div>
</div>
</div><!-- End Ravi testimonial item -->
<div class="swiper-slide">
<div class="testimonial-box">
<div class="author-test">
<img src="assets/img/testimonial-6.png" alt="A profile picture of a man" loading="lazy"
class="rounded-circle b-shadow-a">
<span class="author">Sarel Nel</span>
</div>
<div class="content-test">
<p class="description lead">
Sean has always been very professional and particularly serious about customer service, like a
pet project almost,
he likes to make sure clients are actually happy.
</p>
</div>
</div>
</div><!-- End Sarel testimonial item -->
<div class="swiper-slide">
<div class="testimonial-box">
<div class="author-test">
<img src="assets/img/testimonial-3.png" alt="A profile picture of a man" loading="lazy"
class="rounded-circle b-shadow-a">
<span class="author">Matthew Courtney</span>
</div>
<div class="content-test">
<p class="description lead">
Always ready with extra literature and study materials for new team members, Sean really gets
the
new hires into the fold quickly.
</p>
</div>
</div>
</div><!-- End Matthew testimonial item -->
<div class="swiper-slide">
<div class="testimonial-box">
<div class="author-test">
<img src="assets/img/testimonial-5.png" alt="A profile picture of a man" loading="lazy"
class="rounded-circle b-shadow-a">
<span class="author">Brendon Latimer</span>
</div>
<div class="content-test">
<p class="description lead">
Having worked with Sean in a Very Technical area, I always appreciated his thoroughness and,
in particular, his attention to detail.
</p>
</div>
</div>
</div><!-- End Brendon testimonial item -->
</div>
<div class="swiper-pagination"></div>
</div>
<!-- <div id="testimonial-mf" class="owl-carousel owl-theme">
This item is to use a Carousel Instead
</div> -->
</div>
</div>
</div>
</div><!-- End Testimonials/References Section -->
<!-- Start Blog/Future Plans Section -->
<section id="plans" class="blog-mf sect-pt4 route">
<div class="container">
<div class="row">
<div class="col-sm-12">
<div class="title-box text-center">
<h3 class="title-a">
Now that I'm here, what's next...
</h3>
<p class="subtitle-a">
Where do I go from here and what do I hope to achieve?
</p>
<div class="line-mf"></div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-4">
<div class="card card-blog">
<div class="card-img">
<img src="assets/img/post-1.png" alt="Various full stack programming technologies" loading="lazy"
class="img-fluid">
</div>
<div class="card-body">
<div class="card-category-box">
<div class="card-category">
<h6 class="category">Complete my Studies</h6>
</div>
</div>
<h3 class="card-title">Complete my Full Stack Course</h3>
<p class="card-description">
My primary goal for the next 3 years, is to complete the qualification that I'm studying,
I want complete the course to officially be a Full Stack Developer!
</p>
</div>
<div class="card-footer">
<div class="post-author">
<a href="#">
<img src="assets/img/sean-dylan-patterson-1.png" alt="Sean's profile picture" loading="lazy"
class="avatar rounded-circle">
<span class="author">Sean Dylan Patterson</span>
</a>
</div>
</div>
</div>
</div>
<div class="col-md-4">
<div class="card card-blog">
<div class="card-img">
<img src="assets/img/post-2.png" alt="Various Web 3.0 programming technologies" loading="lazy"
class="img-fluid">
</div>
<div class="card-body">
<div class="card-category-box">
<div class="card-category">
<h6 class="category">Branch Out into Web3</h6>
</div>
</div>
<h3 class="card-title">There's a lot to Learn in Web3</h3>
<p class="card-description">
It's definitely shaping up that Web3 is likely to be a big part of all of our lives over the next few
years,
perhaps even quite a lot longer than that.
</p>
</div>
<div class="card-footer">
<div class="post-author">
<a href="#">
<img src="assets/img/sean-dylan-patterson-1.png" alt="Sean's profile picture'" loading="lazy"
class="avatar rounded-circle">
<span class="author">Sean Dylan Patterson</span>
</a>
</div>
</div>
</div>
</div>
<div class="col-md-4">
<div class="card card-blog">
<div class="card-img">
<img src="assets/img/post-3.png" alt="An image of smart contracts" loading="lazy" class="img-fluid">
</div>
<div class="card-body">
<div class="card-category-box">
<div class="card-category">
<h6 class="category">Learn More About Solidity Smart Contracts</h6>
</div>
</div>
<h3 class="card-title">Smart Contracts = Modern Value</h3>
<p class="card-description">
Things are changing and quicker than we've ever imagined, meaning priorities have changed too, indeed
our very idea of
value has changed!
</p>
</div>
<div class="card-footer">
<div class="post-author">
<a href="#">
<img src="assets/img/sean-dylan-patterson-1.png" alt="Sean's profile picture" loading="lazy"
class="avatar rounded-circle">
<span class="author">Sean Dylan Patterson</span>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</section><!-- End Blog/Future Plans Section -->
<!-- Start Contact Me Section -->
<section id="contact-form" class="paralax-mf footer-paralax bg-image sect-mt4 route"
style="background-image: url(assets/img/overlay-bg.png)">
<div class="overlay-mf"></div>
<div class="container">
<div class="row">
<div class="col-sm-12">
<div class="contact-mf">
<div id="contact" class="box-shadow-full">
<div class="row">
<div class="col-md-6">
<div class="title-box-2">
<h5 class="title-left">
Thinking of getting in touch...?
</h5>
</div>
<div>
<form name="contact" method="POST" data-netlify-recaptcha="true" data-netlify="true">
<div class="row">
<div class="col-md-12 mb-3">
<div class="form-group">
<input type="text" name="name" class="form-control" id="name" placeholder="Name..."
required="true">
</div>
</div>
<div class="col-md-12 mb-3">
<div class="form-group">
<input type="email" class="form-control" name="email" id="email" placeholder="Email..."
required="true">
</div>
</div>
<div class="col-md-12 mb-3">
<div class="form-group">
<input type="text" class="form-control" name="subject" id="subject"
placeholder="Subject..." required="true">
</div>
</div>
<div class="col-md-12">
<div class="form-group">
<textarea class="form-control" name="message" rows="3" placeholder="Message..."
required="true"></textarea>
</div>
</div>
<div styles="align-items-center" data-netlify-recaptcha="true"></div>
<div class="col-md-12 text-center">
<br>
<button type="submit" class="button button-a button-big button-rouded"
id="contact-btn">Send</button>
</div>
</div>
</form>
</div>
</div>
<div class="col-md-6">
<div class="title-box-2 pt-4 pt-md-0">
<h5 class="title-left">
You can do it...
</h5>
</div>
<div class="more-info">
<p class="lead">
Whether you're a business owner looking to get some ideas, advice or a quote for your next
venture, or a fellow developer wanting to
discuss code, feel free to get in touch with me anytime and I'll get right back to you as soon
as I can. You can leave me a message here,
or even catch me on one of the social platforms online...
</p>
<ul>
</ul>
<p>
</p>
<ul class="list-ico">
<li><span class="bi bi-geo-alt"></span><a
href="https://www.google.co.za/maps/place/Airfield,+Benoni,+1501/@-26.1720865,28.3111327,16z/data=!4m5!3m4!1s0x1e953d90fc5cce5f:0xc0288e35d91a3f74!8m2!3d-26.1720865!4d28.3155101">
Benoni, Gauteng, South Africa </a></li>
<li><span class="bi bi-envelope"></span><a
href="mailto:[email protected]?subject=Hey, Sean!"> [email protected]</a></li>
<li><span class="bi bi-phone"></span><a href="tel: +27761051443"> +2776 105 1443</a></li>
</ul>
<p>
</p>
</div>
<div class="socials">
<ul>
<li><a href="https://www.linkedin.com/in/seandylanpatterson/" rel="noopener" target="_blank"
title="Sean on LinkedIn "><span class="ico-circle"><i class="bi bi-linkedin"></i></span></a>
</li>
<li><a href="https://www.github.com/SeanDylan1982/" rel="noopener" target="_blank"
title="Sean's GitHub "><span class="ico-circle"><i class="bi bi-github"></i></span></a></li>
<li><a href="https://www.freecodecamp.org/Sean-Patterson/" rel="noopener" target="_blank"
title="Sean's at freeCodeCamp "><span class="ico-circle"><i
class="bi bi-code-slash"></i></span></a></li>
<li><a href="https://www.twitter.com/@SeanDylan1982/" rel="noopener" target="_blank"
title="Sean's Twitter "><span class="ico-circle"><i class="bi bi-twitter"></i></span></a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section><!-- End Contact Me Section -->
</main><!-- End #Main Section -->
<!-- Start Footer Section -->
<footer>
<div class="container">
<div class="row">
<div class="col-sm-12">
<div class="copyright-box">
<p class="copyright">© Copyright 2023 <a href="https://github.com/SeanDylan1982" rel="noopener"
style="color:#f2f2f2" title="Sean's GitHub" target="_blank"><strong>Sean Dylan Patterson</strong></a>.
All Rights Reserved</p>
</div>
</div>
</div>
</div>
</footer><!-- End Footer Section -->
<div id="preloader"></div>
<a href="#" class="back-to-top d-flex align-items-center justify-content-center"><i class="bi bi-arrow-up"></i></a>
<!-- Vendor JS Files -->
<script src="assets/vendor/purecounter/purecounter.js" defer></script>
<script src="assets/vendor/bootstrap/js/bootstrap.bundle.min.js" defer></script>
<script src="assets/vendor/glightbox/js/glightbox.min.js" defer></script>
<script src="assets/vendor/swiper/swiper-bundle.min.js" defer></script>
<script src="assets/vendor/typed.js/typed.min.js" defer></script>
<script src="assets/vendor/php-email-form/validate.js" defer></script>
<!-- Main JS File -->
<script src="assets/js/main.js" defer></script>
</body>
</html>