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/public/avatar.png | Bin 0 -> 7794 bytes projects/about/public/header.jpg | Bin 0 -> 2792022 bytes projects/about/public/privacy-policy/index.html | 9 + projects/about/public/pro_avatar.png | Bin 0 -> 1077225 bytes projects/about/public/resume/index.html | 924 ++++++++++++++++++++++++ projects/about/public/tabAnimation.js | 27 + 6 files changed, 960 insertions(+) create mode 100644 projects/about/public/avatar.png create mode 100644 projects/about/public/header.jpg create mode 100644 projects/about/public/privacy-policy/index.html create mode 100644 projects/about/public/pro_avatar.png create mode 100644 projects/about/public/resume/index.html create mode 100644 projects/about/public/tabAnimation.js (limited to 'projects/about/public') diff --git a/projects/about/public/avatar.png b/projects/about/public/avatar.png new file mode 100644 index 0000000..b7ea482 Binary files /dev/null and b/projects/about/public/avatar.png differ diff --git a/projects/about/public/header.jpg b/projects/about/public/header.jpg new file mode 100644 index 0000000..985697d Binary files /dev/null and b/projects/about/public/header.jpg differ diff --git a/projects/about/public/privacy-policy/index.html b/projects/about/public/privacy-policy/index.html new file mode 100644 index 0000000..fb9fd3f --- /dev/null +++ b/projects/about/public/privacy-policy/index.html @@ -0,0 +1,9 @@ +zue.dev ("we", "us") values your privacy. + +We do not store your personal data on our own systems. Any data processing required for our services is handled by third-party companies. + +We only partner with third parties (e.g., for hosting, analytics) that we believe maintain high security and privacy standards to protect data. We encourage you to review their individual privacy policies. + +We may update this policy occasionally; please review it periodically. Changes will be posted here. + +If you have questions, contact us at: privacy@zue.dev \ No newline at end of file diff --git a/projects/about/public/pro_avatar.png b/projects/about/public/pro_avatar.png new file mode 100644 index 0000000..61096db Binary files /dev/null and b/projects/about/public/pro_avatar.png differ diff --git a/projects/about/public/resume/index.html b/projects/about/public/resume/index.html new file mode 100644 index 0000000..6227dd8 --- /dev/null +++ b/projects/about/public/resume/index.html @@ -0,0 +1,924 @@ + + + + + + Alex Pooley's Resume πŸ‘¨β€πŸ’ΌπŸ“„ + + + + + + + + + + +
+ + + + + + + + + + + + + + + + diff --git a/projects/about/public/tabAnimation.js b/projects/about/public/tabAnimation.js new file mode 100644 index 0000000..f0040d0 --- /dev/null +++ b/projects/about/public/tabAnimation.js @@ -0,0 +1,27 @@ +// animated tab +const animation = [ + { + emoji: "🌍", + title: "AROUND the world", + }, + { + emoji: "🌏", + title: "around THE world", + }, + { + emoji: "🌎", + title: "around the WORLD", + }, +]; + +let tabAnimationStep = 0; +const favicon = document.querySelector("link[rel='icon']"); +const updateTab = () => { + const currentAnimation = animation[tabAnimationStep % animation.length]; + favicon.href = `data:image/svg+xml,${currentAnimation.emoji}`; + document.title = currentAnimation.title; + tabAnimationStep++; + setTimeout(updateTab, 1000); +}; + +updateTab(); -- cgit v1.2.3