-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
141 lines (129 loc) · 4.21 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Leon Wu | Full-stack Developer</title>
<link rel="stylesheet" href="styles/style.css" />
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css"
/>
</head>
<body>
<script src="src/index.js"></script>
<div class="main">
<!-- Page one -->
<div id="page-one">
<!-- Topbar -->
<div class="topbar-container">
<p class="topbar-status current-status">
Currently: Studying @Unimelb
</p>
</div>
<!-- Bio -->
<div class="bio-box">
<p class="bio-text">Hi, I’m Leon Wu</p>
<p class="bio-subtext">
Full-stack developer in Melbourne, Australia. Interested in elegant
UX, data visualization, and coding for good. When I'm not on VSCode,
find me on the tennis court or at a parkrun.
</p>
<div class="social-links">
<a href="https://github.com/l3onwu" target="_blank">GitHub</a>
<a
href="https://www.linkedin.com/in/leon-wu-160b5744/"
target="_blank"
>
Linkedin</a
>
<a
href="
https://www.strava.com/athletes/leonwu"
target="_blank"
>Strava</a
>
</div>
</div>
</div>
<!-- Page two -->
<div id="page-two">
<!-- Experience -->
<div class="section-box">
<p class="section-title">Experience</p>
<p class="experience-year">Now</p>
<p class="experience-description">
Graduate Software Engineer @ Macquarie Bank
</p>
<p class="experience-year">2022/2023</p>
<p class="experience-description">
Master of Information Technology @ University of Melbourne
</p>
<p class="experience-year">Summer 2022</p>
<p class="experience-description">
Software Engineer Intern @ Australian New Zealand Bank (ANZ)
</p>
</div>
<!-- Projects -->
<div class="section-box">
<p class="section-title">Projects</p>
<a
href="https://skyshot.vercel.app"
target="_blank"
class="link-style"
>
<div class="project-description">
<p class="project-title">
Skyshot<span style="font-size: 12px"> </span>
</p>
<p>
A React weather app that displays the forecast in a calendar
view.
</p>
<p class="tech-stack-description">
Built with React, Google Maps API
</p>
</div>
</a>
<a
href="https://heartva.vercel.app"
target="_blank"
class="link-style"
>
<div class="project-description">
<p class="project-title">
Heartva
<span style="font-size: 12px"> </span>
</p>
<p>
A web app using the Strava API to visualize heart rate data and
trends.
</p>
<p class="tech-stack-description">Built with React, Strava API</p>
</div>
</a>
<a
href="https://github.com/l3onwu/wa-covid-sites"
target="_blank"
class="link-style"
>
<div class="project-description">
<p class="project-title">
WACovidSites
<span style="font-size: 12px"> </span>
</p>
<p>
A frontend in React, that extracts data from a community
spreadsheet of self-reported COVID exposures.
</p>
<p class="tech-stack-description">
Built with React, Axios, Google Sheets API
</p>
</div>
</a>
</div>
</div>
</div>
</body>
</html>