-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
88 lines (72 loc) · 2.96 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Jeff Haineault : Portfolio</title>
<link rel="stylesheet" href="styles/main.css"/>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"/>
<link href="https://fonts.googleapis.com/css?family=Orbitron&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Montserrat"/>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Cardo"/>
</head>
<body>
<main class="overflow--auto">
<h1 class="color--skyBlue section__heading--largest">
<!--Your name goes here -->
JEFF HAINEAULT
</h1>
<ul class="section--social">
<!--Links to relevant professional social media & resume -->
<!-- See: http://fontawesome.io/icons/#brand for more -->
<!-- Link to Linked In profile -->
<li class="socialWrapper">
<a class="color--skyBlue social"
title="LinkedIn Profile"
target="_blank"
href="https://www.linkedin.com/in/jeff-haineault-4bb669b9/">
<i class="fa fa-linkedin"></i>
</a>
</li>
<!-- Link to GitHub profile -->
<li class="socialWrapper color--skyBlue">
<a class="social color--skyBlue"
title="GitHub Profile"
target="_blank"
href="https://github.com/jhaineault1">
<i class="fa fa-github"></i>
</a>
</li>
<!-- Link to resume, probably a .pdf -->
<li class="socialWrapper">
<a class="social color--skyBlue"
title="Resume"
href="Jeff_Haineault_Resume.pdf">
<i class="fa fa-file-text"></i>
</a>
</li>
</ul>
</main>
<section class="background--skyBlue section">
<h2 class="color--cloud margin--none section__text--centered">
Portfolio
</h2>
</section>
<div id="example-work"></div>
<section class="background--skyBlue section">
<h2 class="color--cloud margin--none section__text--centered">
How This Site Was Built
</h2>
</section>
<section class="section section--alignCentered section--description">
<p class="color--darkgrey section__description">
I built this site using a "Serverless" CI/CD pipeline in AWS.
The domain is managed by AWS's Route 53 while CloudFront hosts the site.
The portfolio files are stored in a S3 bucket which were mainly written in ReactJS and BABEL.
AWS's CodeBuild grabs the code from my GitHub and automatically pushes it into production using
AWS's CodePipeline combined with a Lambda function.
Once the code reaches the S3 bucket a SNS(Simple Notification Service) sends an email
stating whether the code was deployed successfully or not.
</p>
<script type="text/javascript" src="dist/bundle.js"></script>
</body>
</html>