diff options
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> ))} |
