From cbc17db44c18a19702938b3fe70ea3de81d326ea Mon Sep 17 00:00:00 2001 From: "Alex Pooley (@zuedev)" Date: Mon, 1 Dec 2025 00:45:09 +0000 Subject: make it work --- source/about/public/avatar.png | Bin 0 -> 7794 bytes source/about/public/header.jpg | Bin 0 -> 2792022 bytes source/about/public/privacy-policy/index.html | 9 + source/about/public/pro_avatar.png | Bin 0 -> 1077225 bytes source/about/public/resume/index.html | 924 ++++++++++++++++++++++++++ source/about/public/tabAnimation.js | 27 + 6 files changed, 960 insertions(+) create mode 100644 source/about/public/avatar.png create mode 100644 source/about/public/header.jpg create mode 100644 source/about/public/privacy-policy/index.html create mode 100644 source/about/public/pro_avatar.png create mode 100644 source/about/public/resume/index.html create mode 100644 source/about/public/tabAnimation.js (limited to 'source/about/public') diff --git a/source/about/public/avatar.png b/source/about/public/avatar.png new file mode 100644 index 0000000..b7ea482 Binary files /dev/null and b/source/about/public/avatar.png differ diff --git a/source/about/public/header.jpg b/source/about/public/header.jpg new file mode 100644 index 0000000..985697d Binary files /dev/null and b/source/about/public/header.jpg differ diff --git a/source/about/public/privacy-policy/index.html b/source/about/public/privacy-policy/index.html new file mode 100644 index 0000000..fb9fd3f --- /dev/null +++ b/source/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/source/about/public/pro_avatar.png b/source/about/public/pro_avatar.png new file mode 100644 index 0000000..61096db Binary files /dev/null and b/source/about/public/pro_avatar.png differ diff --git a/source/about/public/resume/index.html b/source/about/public/resume/index.html new file mode 100644 index 0000000..6227dd8 --- /dev/null +++ b/source/about/public/resume/index.html @@ -0,0 +1,924 @@ + + + + + + Alex Pooley's Resume πŸ‘¨β€πŸ’ΌπŸ“„ + + + + + + + + + + +
+ + + + + + + + + + + + + + + + diff --git a/source/about/public/tabAnimation.js b/source/about/public/tabAnimation.js new file mode 100644 index 0000000..f0040d0 --- /dev/null +++ b/source/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