-
Notifications
You must be signed in to change notification settings - Fork 135
Expand file tree
/
Copy pathindex.html
More file actions
102 lines (98 loc) · 4.3 KB
/
index.html
File metadata and controls
102 lines (98 loc) · 4.3 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Maye Edwin — Software Engineer & GDE</title>
<link rel="shortcut icon" href="/favicon.ico" />
<link rel="manifest" href="/manifest.json" />
<meta name="theme-color" content="#0a0a0a" />
</head>
<body>
<main id="wrapper">
<section class="hero">
<img
src="/images/mayeedwingdg.jpg"
alt="Maye Edwin"
class="hero-avatar"
width="120"
height="120"
/>
<h1>Maye Edwin</h1>
<p class="hero-tagline">
Software Engineer · Google Developer Expert · Creator of
<a href="https://pwafire.org/developer">PWA Fire</a>
</p>
<div class="actions">
<button type="button" class="btn" data-share="home">Share</button>
<a href="mailto:maye@pwafire.org" class="btn btn-primary"
>Get in touch</a
>
</div>
<div class="socials">
<a href="https://x.com/mayeedwin1" aria-label="X"
><svg
width="20"
height="20"
viewBox="0 0 24 24"
fill="currentColor"
>
<path
d="M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z"
/></svg
></a>
<a href="https://github.com/mayeedwin" aria-label="GitHub"
><svg
width="20"
height="20"
viewBox="0 0 24 24"
fill="currentColor"
>
<path
d="M12 0C5.37 0 0 5.37 0 12c0 5.31 3.435 9.795 8.205 11.385.6.105.825-.255.825-.57 0-.285-.015-1.23-.015-2.235-3.015.555-3.795-.735-4.035-1.41-.135-.345-.72-1.41-1.23-1.695-.42-.225-1.02-.78-.015-.795.945-.015 1.62.87 1.845 1.23 1.08 1.815 2.805 1.305 3.495.99.105-.78.42-1.305.765-1.605-2.67-.3-5.46-1.335-5.46-5.925 0-1.305.465-2.385 1.23-3.225-.12-.3-.54-1.53.12-3.18 0 0 1.005-.315 3.3 1.23.96-.27 1.98-.405 3-.405s2.04.135 3 .405c2.295-1.56 3.3-1.23 3.3-1.23.66 1.65.24 2.88.12 3.18.765.84 1.23 1.905 1.23 3.225 0 4.605-2.805 5.625-5.475 5.925.435.375.81 1.095.81 2.22 0 1.605-.015 2.895-.015 3.3 0 .315.225.69.825.57A12.02 12.02 0 0024 12c0-6.63-5.37-12-12-12z"
/></svg
></a>
<a href="https://linkedin.com/in/mayeedwin" aria-label="LinkedIn"
><svg
width="20"
height="20"
viewBox="0 0 24 24"
fill="currentColor"
>
<path
d="M20.447 20.452h-3.554v-5.569c0-1.328-.027-3.037-1.852-3.037-1.853 0-2.136 1.445-2.136 2.939v5.667H9.351V9h3.414v1.561h.046c.477-.9 1.637-1.85 3.37-1.85 3.601 0 4.267 2.37 4.267 5.455v6.286zM5.337 7.433c-1.144 0-2.063-.926-2.063-2.065 0-1.138.92-2.063 2.063-2.063 1.14 0 2.064.925 2.064 2.063 0 1.139-.925 2.065-2.064 2.065zm1.782 13.019H3.555V9h3.564v11.452zM22.225 0H1.771C.792 0 0 .774 0 1.729v20.542C0 23.227.792 24 1.771 24h20.451C23.2 24 24 23.227 24 22.271V1.729C24 .774 23.2 0 22.222 0h.003z"
/></svg
></a>
</div>
</section>
<section class="intro">
<h2>Work</h2>
<p>
Software Engineer, AI Integration Architect & DX Engineer at
<a href="https://taxually.com">Taxually</a>. Google Developer Expert
in Web Technologies.
</p>
<a href="https://linkedin.com/in/mayeedwin" class="link">LinkedIn →</a>
</section>
<section class="intro">
<h2>About</h2>
<p>
Creator of <a href="https://pwafire.org/developer">PWA Fire</a> —
open-source library for building Progressive Web Apps. Speaker,
technical writer, focused on PWAs, AI DX & web performance.
</p>
</section>
<section class="intro">
<h2>Contact</h2>
<p><a href="mailto:maye@pwafire.org">maye@pwafire.org</a></p>
</section>
<footer>
<p>© Maye Edwin <span id="year"></span></p>
</footer>
</main>
<script type="module" src="/src/main.ts"></script>
<script>
document.getElementById("year").textContent = new Date().getFullYear();
</script>
</body>
</html>