Compare commits
No commits in common. "2c77d7a06cb19bd793c3e69fb97b43f3859723da" and "d31a0e523f78df63ccd017b22ea44baf3e7458b8" have entirely different histories.
2c77d7a06c
...
d31a0e523f
1
.gitignore
vendored
1
.gitignore
vendored
@ -1 +0,0 @@
|
||||
.DS_Store
|
||||
@ -1,87 +0,0 @@
|
||||
@font-face {
|
||||
font-family: selectric;
|
||||
src: url(/assets/fonts/selectric-light.ttf);
|
||||
}
|
||||
@font-face {
|
||||
font-family: selectric;
|
||||
src: url(/assets/fonts/selectric-light-italic.ttf);
|
||||
font-style: italic;
|
||||
}
|
||||
@font-face {
|
||||
font-family: archer;
|
||||
src: url(/assets/fonts/archer-thin.otf);
|
||||
}
|
||||
@font-face {
|
||||
font-family: archer;
|
||||
src: url(/assets/fonts/archer-thin-italic.otf);
|
||||
font-style: italic;
|
||||
}
|
||||
@font-face {
|
||||
font-family: archer;
|
||||
src: url(/assets/fonts/archer-book.otf);
|
||||
font-weight: bold;
|
||||
}
|
||||
@font-face {
|
||||
font-family: archer;
|
||||
src: url(/assets/fonts/archer-book-italic.otf);
|
||||
font-weight: bold;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: archer;
|
||||
}
|
||||
|
||||
.container {
|
||||
width: 600px;
|
||||
margin: 2em auto;
|
||||
}
|
||||
|
||||
.header {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
|
||||
border-bottom: 1px solid #000;
|
||||
}
|
||||
|
||||
.header .name {
|
||||
font-family: selectric;
|
||||
font-style: italic;
|
||||
font-size: 4em;
|
||||
}
|
||||
|
||||
.header .contact {
|
||||
text-align: right;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.header, .body {
|
||||
padding: 0.5em;
|
||||
}
|
||||
|
||||
.section .descriptor {
|
||||
font-size: 1.5em;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.section .block {
|
||||
margin: 0.5em;
|
||||
}
|
||||
|
||||
.section .block .title {
|
||||
text-align: right;
|
||||
font-style: italic;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
ul {
|
||||
list-style-type: circle;
|
||||
}
|
||||
|
||||
.proficiencies .block {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
justify-content: space-evenly;
|
||||
}
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
129
site/index.html
129
site/index.html
@ -1,132 +1,17 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>Chloe Herd</title>
|
||||
|
||||
<!-- favicon -->
|
||||
<link rel="icon" href="/favicon.ico" size="any">
|
||||
<link rel="icon" href="/favicon.svg" type="image/svg+xml">
|
||||
|
||||
<link rel="stylesheet" href="/assets/chloe.css" type="text/css">
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
<div class="header">
|
||||
<div class="name">
|
||||
<h1>
|
||||
Chloe Herd
|
||||
</div>
|
||||
<div class="contact">
|
||||
<div class="method">
|
||||
Columbus, OH
|
||||
</div>
|
||||
<div class="method">
|
||||
chloe@chloeherd.codes
|
||||
</div>
|
||||
<div class="method">
|
||||
Linkedin
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="body">
|
||||
<div class="section work-experience">
|
||||
<div class="descriptor">
|
||||
Work Experience
|
||||
</div>
|
||||
<div class="block safelite">
|
||||
<div class="title">
|
||||
<span class="years">2023 - Present</span> – Full-Stack Engineer, Safelite, Columbus OH.
|
||||
</div>
|
||||
<div class="content">
|
||||
<ul>
|
||||
<li>
|
||||
Implemented new designs for a greenfield rewrite of an e-commerce order form, using <strong>Vue.js</strong> and <strong>.NET</strong>.
|
||||
</li>
|
||||
<li>
|
||||
Worked closely with product owners to quickly pivot development based on feedback and product goals.
|
||||
</li>
|
||||
<li>
|
||||
Ran and updated <strong>Azure DevOps</strong> pipelines, facilitating seamless deployment of applications to multiple environments.
|
||||
</li>
|
||||
<li>
|
||||
Worked in tandem with other teams to build an ecosystem of independent but interconnected business applications.
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="section education">
|
||||
<div class="descriptor">
|
||||
Education
|
||||
</div>
|
||||
<div class="block uva">
|
||||
<div class="title">
|
||||
<span class="years">2020</span> – B.S. Computer Science, University of Virginia
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="section proficiencies">
|
||||
<div class="descriptor">
|
||||
Technologies
|
||||
</div>
|
||||
<div class="block languages">
|
||||
<div class="item">
|
||||
<span>C#</span>
|
||||
</div>
|
||||
<div class="item">
|
||||
<span>Javascript</span>
|
||||
</div>
|
||||
<div class="item">
|
||||
<span>Typescript</span>
|
||||
</div>
|
||||
<div class="item">
|
||||
<span>Python</span>
|
||||
</div>
|
||||
<div class="item">
|
||||
<span>Java</span>
|
||||
</div>
|
||||
<div class="item">
|
||||
<span>HTML5</span>
|
||||
</div>
|
||||
<div class="item">
|
||||
<span>CSS3</span>
|
||||
</div>
|
||||
<div class="item">
|
||||
<span>C++</span>
|
||||
</div>
|
||||
<div class="item">
|
||||
<span>Bash</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="block frameworks">
|
||||
<div class="item">
|
||||
<span>Vue.js</span>
|
||||
</div>
|
||||
<div class="item">
|
||||
<span>React</span>
|
||||
</div>
|
||||
<div class="item">
|
||||
<span>Vuex</span>
|
||||
</div>
|
||||
<div class="item">
|
||||
<span>Redux</span>
|
||||
</div>
|
||||
<div class="item">
|
||||
<span>Node.js</span>
|
||||
</div>
|
||||
<div class="item">
|
||||
<span>Docker</span>
|
||||
</div>
|
||||
<div class="item">
|
||||
<span>.NET</span>
|
||||
</div>
|
||||
<div class="item">
|
||||
<span>Azure DevOps</span>
|
||||
</div>
|
||||
<div class="item">
|
||||
<span>Git</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</h1>
|
||||
<hr />
|
||||
<p>
|
||||
Still building...
|
||||
</p>
|
||||
</body>
|
||||
</html>
|
||||
Loading…
x
Reference in New Issue
Block a user