aboutsummaryrefslogtreecommitdiff
path: root/public/index.html
diff options
context:
space:
mode:
authorAlex Pooley (@zuedev) <zuedev@gmail.com>2026-03-03 10:32:30 +0000
committerAlex Pooley (@zuedev) <zuedev@gmail.com>2026-03-03 10:32:30 +0000
commitbc461bfa9704d6ffe3466c1d89287dd43a46861d (patch)
tree017a5348438967424e5bc9304c1a4f002cd3bab7 /public/index.html
parent14e968309da5036711ee0e3995362aa19d7bd7d8 (diff)
downloadzue.dev-bc461bfa9704d6ffe3466c1d89287dd43a46861d.tar
zue.dev-bc461bfa9704d6ffe3466c1d89287dd43a46861d.tar.gz
zue.dev-bc461bfa9704d6ffe3466c1d89287dd43a46861d.tar.bz2
zue.dev-bc461bfa9704d6ffe3466c1d89287dd43a46861d.tar.xz
zue.dev-bc461bfa9704d6ffe3466c1d89287dd43a46861d.zip
add bbg
Diffstat (limited to 'public/index.html')
-rw-r--r--public/index.html27
1 files changed, 20 insertions, 7 deletions
diff --git a/public/index.html b/public/index.html
index dda4cd4..bfd1c0e 100644
--- a/public/index.html
+++ b/public/index.html
@@ -111,18 +111,31 @@
</p>
<article>
- <h2>Projects</h2>
- <ul>
+ <h2>What am I working on?</h2>
+ <ul style={{ listStyleType: "square" }}>
{[
{
- name: "Unnamed Group",
+ role: "Lead Developer",
+ connective: "at",
+ place: "Blue Bean Games",
+ url: "https://zue.dev/bbg",
+ },
+ {
+ role: "Director",
+ connective: "at",
+ place: "Unnamed Group",
url: "https://unnamed.group/",
- description: "Non-profit gaming community management",
},
- ].map((project) => (
- <li key={project.name}>
+ {
+ role: "Manager",
+ connective: "for",
+ place: "YayJayBae",
+ url: "https://yayjaybae.com/",
+ },
+ ].map((project, index) => (
+ <li key={index}>
<a href={project.url}>
- {project.name}: {project.description}
+ <b>{project.role}</b> {project.connective} {project.place}
</a>
</li>
))}