diff options
| author | Alex Pooley (@zuedev) <zuedev@gmail.com> | 2026-03-03 10:32:30 +0000 |
|---|---|---|
| committer | Alex Pooley (@zuedev) <zuedev@gmail.com> | 2026-03-03 10:32:30 +0000 |
| commit | bc461bfa9704d6ffe3466c1d89287dd43a46861d (patch) | |
| tree | 017a5348438967424e5bc9304c1a4f002cd3bab7 /public/index.html | |
| parent | 14e968309da5036711ee0e3995362aa19d7bd7d8 (diff) | |
| download | zue.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.html | 27 |
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> ))} |
