-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcover-letter.html
More file actions
134 lines (118 loc) · 3.63 KB
/
cover-letter.html
File metadata and controls
134 lines (118 loc) · 3.63 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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Cover Letter - Augusto Amaral</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
"Helvetica Neue", Arial, sans-serif;
background: linear-gradient(to bottom, #e8f0fe 0%, #ffffff 100px);
padding: 40px 20px;
color: #1a1a1a;
line-height: 1.6;
}
.container {
max-width: 800px;
margin: 0 auto;
background: white;
padding: 60px 80px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
border-radius: 8px;
}
h1 {
font-size: 48px;
font-weight: 400;
margin-bottom: 20px;
color: #1a1a1a;
}
.date {
font-size: 16px;
color: #5f6368;
margin-bottom: 40px;
padding: 8px 16px;
background: #f1f3f4;
border-radius: 20px;
display: inline-block;
}
.position {
font-size: 20px;
font-weight: 600;
margin-bottom: 8px;
color: #1a1a1a;
}
.company {
font-size: 32px;
font-weight: 700;
margin-bottom: 12px;
color: #1a1a1a;
}
.greeting {
font-size: 18px;
margin-bottom: 8px;
color: #1a1a1a;
}
p {
font-size: 14px;
margin-bottom: 25px;
color: #3c4043;
text-align: justify;
}
.closing {
margin-top: 20px;
margin-bottom: 10px;
}
.signature {
font-size: 18px;
font-weight: 500;
color: #1a1a1a;
}
@media (max-width: 768px) {
.container {
padding: 40px 30px;
}
h1 {
font-size: 36px;
}
.company {
font-size: 24px;
}
}
</style>
</head>
<body>
<div class="container">
<h1>Cover Letter</h1>
<div class="position">Software Engineer Frontend (m/f/d) @ Alocai</div>
<div class="greeting">Dear Hiring team,</div>
<p>
I'm Augusto Amaral, a Senior Frontend Engineer with 6 years of
experience building scalable, responsive web applications, and I'm
excited to apply for the Frontend Software Engineer position at Alocai.
My expertise in React, TypeScript, and modern frontend architecture,
combined with my passion for the gaming industry, makes me a strong fit
for your AI-driven localization platform. I truly believe AI will be a
transformative milestone in the gaming industry, and the opportunity to
be part of this revolution at Alocai would be a dream come true. At
Three60 Energy, I've architected BI tools and led initiatives like
migrating to Playwright for visual regression testing, achieving 80%
cost reduction while maintaining 90%+ coverage, demonstrating my ability
to build robust, testable code. I've also worked extensively with
frontend testing frameworks (Jest, React Testing Library), RESTful APIs,
and modern development tools (Webpack, Babel, NPM), always prioritizing
code quality and user experience. I'm used to work in collaborative
environments, working with cross-functional teams across Norway, the US,
and Brazil.
</p>
<p>Looking forward to hearing from you.</p>
<div class="closing">Best regards,</div>
<div class="signature">Augusto Amaral</div>
</div>
</body>
</html>