-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
176 lines (161 loc) · 5.52 KB
/
index.html
File metadata and controls
176 lines (161 loc) · 5.52 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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Grant Achuzia</title>
<meta name="description"
content="Computer Systems Engineering student passionate about data analysis, UI/UX design, and game development." />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;500;600&family=Roboto+Mono:wght@400;500;600&display=swap"
rel="stylesheet" />
<link rel="stylesheet" href="css/styles.css" />
</head>
<body>
<div class="container">
<!-- Main Content -->
<main class="main-content">
<!-- About Section -->
<section class="section">
<div class="name-container">
<h2>Grant Achuzia</h2>
<div class="theme-toggle">
<span class="theme-text" id="theme-text">dark mode</span>
</div>
</div>
<div class="content">
<p>
I'm a 4th year Computer Systems Engineering student
at Carleton University (graduating May 2026). I love data analysis,
UI/UX design, and game development (with a sprinkle of systems
programming).
</p>
</div>
</section>
<!-- Projects Section -->
<section class="section">
<h2>projects</h2>
<div class="content">
<div class="project-category">
<h3>Web Applications</h3>
<div class="project-list">
<div class="project-item">
<a href="https://github.com/GAchuzia/cell-reminders" target="_blank" rel="noopener noreferrer">
<strong>cell reminders</strong>
</a>
<p>
Google Sheets add-on/script that creates Google Calendar events linked to specific sheet cells
</p>
</div>
</div>
</div>
<div class="project-category">
<h3>Games & Interactive</h3>
<div class="project-list">
<div class="project-item">
<a href="https://github.com/GAchuzia/trpl-m" target="_blank" rel="noopener noreferrer">
<strong>trpl-m</strong>
</a>
<p>
Master Mental Math in your terminal
</p>
</div>
</div>
</div>
</div>
</section>
<!-- Experience Section -->
<section class="section">
<h2>experience</h2>
<div class="content">
<div class="experience-item">
<div class="experience-header">
<strong>Lumentum</strong>
<span class="duration">Winter 2025</span>
</div>
<p class="role">Solution Software System Test Intern</p>
</div>
<div class="experience-item">
<div class="experience-header">
<strong>Maintenance Drone Co</strong>
<span class="duration">Summer 2024</span>
</div>
<p class="role">Software Developer Intern</p>
</div>
<div class="experience-item">
<div class="experience-header">
<strong>Roof Maintenance Solutions</strong>
<span class="duration">Winter 2023</span>
</div>
<p class="role">Software Developer Intern</p>
</div>
</section>
<!-- Skills Section -->
<section class="section">
<h2>skills</h2>
<div class="content">
<div class="skills-grid">
<div class="skill-category">
<h3>Languages</h3>
<p>
Python, JavaScript, TypeScript, C/C++, SQL, Java
</p>
</div>
<div class="skill-category">
<h3>Technologies</h3>
<p>
Git, PostgreSQL, Godot
</p>
</div>
<div class="skill-category">
<h3>Frameworks & Libraries</h3>
<p>
PyTorch,
React, Node.js, Flask
</p>
</div>
<div class="skill-category">
<h3>Tools & Platforms</h3>
<p>
VS Code, Figma, Affinity Designer, Jira
</p>
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<section class="section">
<h2>contact</h2>
<div class="content">
<div class="contact-links">
<a href="https://github.com/GAchuzia" target="_blank" rel="noopener noreferrer" class="contact-link">
GitHub
</a>
<a href="https://www.linkedin.com/in/grant-achuzia-8259251b8/" target="_blank" rel="noopener noreferrer"
class="contact-link">
LinkedIn
</a>
<a href="assets/Resume_GrantAchuzia.pdf" target="_blank" class="contact-link">
Resume
</a>
<a href="mailto:grant.achuzia@example.com" class="contact-link">
Email
</a>
</div>
</div>
</section>
</main>
<!-- Footer -->
<footer class="footer">
<div class="quote-container">
<p class="quote" id="quote">
"Random quotes every page refresh? Holy Minecraft copycat Batman!"
</p>
</div>
</footer>
</div>
<script src="js/script.js"></script>
</body>
</html>