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 --- projects/about/public/avatar.png | Bin 7794 -> 0 bytes projects/about/public/header.jpg | Bin 2792022 -> 0 bytes projects/about/public/privacy-policy/index.html | 9 - projects/about/public/pro_avatar.png | Bin 1077225 -> 0 bytes projects/about/public/resume/index.html | 924 ------------------------ projects/about/public/tabAnimation.js | 27 - 6 files changed, 960 deletions(-) delete mode 100644 projects/about/public/avatar.png delete mode 100644 projects/about/public/header.jpg delete mode 100644 projects/about/public/privacy-policy/index.html delete mode 100644 projects/about/public/pro_avatar.png delete mode 100644 projects/about/public/resume/index.html delete 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 deleted file mode 100644 index b7ea482..0000000 Binary files a/projects/about/public/avatar.png and /dev/null differ diff --git a/projects/about/public/header.jpg b/projects/about/public/header.jpg deleted file mode 100644 index 985697d..0000000 Binary files a/projects/about/public/header.jpg and /dev/null differ diff --git a/projects/about/public/privacy-policy/index.html b/projects/about/public/privacy-policy/index.html deleted file mode 100644 index fb9fd3f..0000000 --- a/projects/about/public/privacy-policy/index.html +++ /dev/null @@ -1,9 +0,0 @@ -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 deleted file mode 100644 index 61096db..0000000 Binary files a/projects/about/public/pro_avatar.png and /dev/null differ diff --git a/projects/about/public/resume/index.html b/projects/about/public/resume/index.html deleted file mode 100644 index 6227dd8..0000000 --- a/projects/about/public/resume/index.html +++ /dev/null @@ -1,924 +0,0 @@ - - - - - - Alex Pooley's Resume πŸ‘¨β€πŸ’ΌπŸ“„ - - - - - - - - - - -
- - - - - - - - - - - - - - - - diff --git a/projects/about/public/tabAnimation.js b/projects/about/public/tabAnimation.js deleted file mode 100644 index f0040d0..0000000 --- a/projects/about/public/tabAnimation.js +++ /dev/null @@ -1,27 +0,0 @@ -// 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