aboutsummaryrefslogtreecommitdiff
path: root/public/index.html
diff options
context:
space:
mode:
authorAlex Pooley (@zuedev) <zuedev@gmail.com>2026-03-03 10:37:50 +0000
committerAlex Pooley (@zuedev) <zuedev@gmail.com>2026-03-03 10:37:50 +0000
commit9e1286ea46c31b87a18332927876f7159bfcfb37 (patch)
treea3a7e7191329111241da03430dda655cae4e11e9 /public/index.html
parentbc461bfa9704d6ffe3466c1d89287dd43a46861d (diff)
downloadzue.dev-9e1286ea46c31b87a18332927876f7159bfcfb37.tar
zue.dev-9e1286ea46c31b87a18332927876f7159bfcfb37.tar.gz
zue.dev-9e1286ea46c31b87a18332927876f7159bfcfb37.tar.bz2
zue.dev-9e1286ea46c31b87a18332927876f7159bfcfb37.tar.xz
zue.dev-9e1286ea46c31b87a18332927876f7159bfcfb37.zip
update roles in project list and add new Solutions Architect entry
Diffstat (limited to 'public/index.html')
-rw-r--r--public/index.html17
1 files changed, 14 insertions, 3 deletions
diff --git a/public/index.html b/public/index.html
index bfd1c0e..3bf1cd9 100644
--- a/public/index.html
+++ b/public/index.html
@@ -115,13 +115,13 @@
<ul style={{ listStyleType: "square" }}>
{[
{
- role: "Lead Developer",
+ role: "Creative Lead",
connective: "at",
place: "Blue Bean Games",
url: "https://zue.dev/bbg",
},
{
- role: "Director",
+ role: "Director of Engineering",
connective: "at",
place: "Unnamed Group",
url: "https://unnamed.group/",
@@ -132,9 +132,20 @@
place: "YayJayBae",
url: "https://yayjaybae.com/",
},
+ {
+ role: "Solutions Architect",
+ connective: "at",
+ place: "your company?",
+ url: "https://zue.dev/resume",
+ styles: {
+ fontStyle: "italic",
+ background: "yellow",
+ color: "black",
+ },
+ },
].map((project, index) => (
<li key={index}>
- <a href={project.url}>
+ <a href={project.url} style={project.styles}>
<b>{project.role}</b> {project.connective} {project.place}
</a>
</li>