From 2131d5fec97f6163678fdec40dd2d6e9f7a5e58c Mon Sep 17 00:00:00 2001 From: "Alex Pooley (@zuedev)" Date: Thu, 30 Oct 2025 23:40:37 +0000 Subject: restructure repo into a monorepo --- projects/about/src/app/page.js | 179 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 179 insertions(+) create mode 100644 projects/about/src/app/page.js (limited to 'projects/about/src/app/page.js') diff --git a/projects/about/src/app/page.js b/projects/about/src/app/page.js new file mode 100644 index 0000000..435918a --- /dev/null +++ b/projects/about/src/app/page.js @@ -0,0 +1,179 @@ +export default () => { + const yearsAsEngineer = new Date().getFullYear() - 2012; + + return ( + <> +
+
+

+ Hello, World! +
+ I'm zuedev. +

+
+
+

+ Who am I? ✨ +

+ +
+
+

Formally...

+

+ I'm a software engineer and entrepreneur from the UK who thrives + on building things that help and entertain people. +

+

+ If you want to learn more about me, check out my{" "} + + resume + + . In short: +

+
    +
  • + Software engineer (full-stack) for more than {yearsAsEngineer}{" "} + years; +
  • +
  • Trusted with leadership for 9 of those years;
  • +
  • + Director of a{" "} + + non-profit + {" "} + since 2016; +
  • +
  • + Programming polyglot (JavaScript, Python, C#, and more); +
  • +
  • + Running Linux (Arch), Windows, and macOS on a daily basis; +
  • +
  • Been living in the Unreal Engine for ~4 years;
  • +
  • + Started{" "} + + mentoring + {" "} + the next generation of developers in 2021; +
  • +
+
+ +
+

Informally...

+

+ I'm an{" "} + + avid gamer + {" "} + and a hobbyist musician in my spare time. On the weekends I can + usually be found DM'ing games such as Dungeons & Dragons and + Cyberpunk RED with my friends. I'm nearly always listening to + music and programming something, probably working on my latest + game or open-source project. +

+
+
+
+
+

What am I up to? 💼

+ +
+

+ I'm always working on something... There's not enough time in the + day to do everything I want to do! Here's a few things I'm + currently working on: +

+ +
+ {[ + { + title: "For Money 💵", + description: ( + <> + Money makes the world go round, unfortunately... That's + why I founded and run both{" "} + + Termina One + {" "} + and{" "} + + Area96 Digital + {" "} + to help build capital for my other projects. + + ), + }, + { + title: "For Fun 🎉", + description: ( + <> + What don't I do? I have a backlog of games to play, music + to make, and projects to work on. Right now, I'm trying to + get back into making mods for{" "} + + Minecraft + + . + + ), + }, + { + title: "For Charity ❤️", + description: ( + <> + I'm currently working on directing a non-profit project + called{" "} + + Unnamed Group + {" "} + to help support people online who are looking for a safe + space to play games and socialise. + + ), + }, + ].map((item, index) => ( +
+

{item.title}

+

{item.description}

+
+ ))} +
+
+
+
+ + ); +}; -- cgit v1.2.3