diff options
| author | zuedev <zuedev@gmail.com> | 2025-12-01 00:45:32 +0000 |
|---|---|---|
| committer | zuedev <zuedev@gmail.com> | 2025-12-01 00:45:32 +0000 |
| commit | c1c330fe1dd34f02558ed69e841927cc6765fa45 (patch) | |
| tree | c44ef96fc9e66ecb013e99b5d8e2dc8ce333ffc9 /public/index.html | |
| parent | 25f31c26bf153366628257849b3eaf216541f1ce (diff) | |
| parent | cbc17db44c18a19702938b3fe70ea3de81d326ea (diff) | |
| download | zue.dev-c1c330fe1dd34f02558ed69e841927cc6765fa45.tar zue.dev-c1c330fe1dd34f02558ed69e841927cc6765fa45.tar.gz zue.dev-c1c330fe1dd34f02558ed69e841927cc6765fa45.tar.bz2 zue.dev-c1c330fe1dd34f02558ed69e841927cc6765fa45.tar.xz zue.dev-c1c330fe1dd34f02558ed69e841927cc6765fa45.zip | |
Merge pull request 'merged-worker' (#1) from merged-worker into main
Reviewed-on: https://forgejo.sovereign.zue.dev/zuedev/zue.dev/pulls/1
Diffstat (limited to 'public/index.html')
| -rw-r--r-- | public/index.html | 72 |
1 files changed, 72 insertions, 0 deletions
diff --git a/public/index.html b/public/index.html new file mode 100644 index 0000000..6141472 --- /dev/null +++ b/public/index.html @@ -0,0 +1,72 @@ +<!DOCTYPE html> +<html lang="en"> + <head> + <meta charset="UTF-8" /> + <meta name="viewport" content="width=device-width, initial-scale=1.0" /> + + <title>zuedev's space</title> + <meta name="description" content="Hello, World! I'm zuedev." /> + <link rel="icon" href="https://about.zue.dev/avatar.png" /> + + <script src="https://cdn.jsdelivr.net/npm/@tailwindcss/browser@4"></script> + </head> + <body> + <div + class="flex flex-col justify-center min-h-screen bg-black text-white font-mono text-lg" + > + <div class="max-w-2xl mx-auto px-4 py-8 space-y-4"> + <p> + I'm working on updating this website to be a hub for my projects and + services. + </p> + <p>In the meantime, here's some links:</p> + <ul class="list-disc pl-5"> + <li> + <a href="https://t1.zue.dev" class="text-cyan-500 hover:underline"> + T1: Zero-Markup Development & Hosting + </a> + </li> + <li> + <a href="https://96.zue.dev" class="text-cyan-500 hover:underline"> + 96: Transparent Talent Management + </a> + </li> + <li> + <a href="https://bbg.zue.dev" class="text-cyan-500 hover:underline"> + BBG: Open-Source Independent Game Studio + </a> + </li> + <li> + <a + href="https://about.zue.dev" + class="text-cyan-500 hover:underline" + > + About Me + </a> + </li> + </ul> + </div> + </div> + </body> + <script> + // animated tab + const animation = [ + { + emoji: "❤️", + title: "Welcome to zuedev's space", + }, + ]; + + let tabAnimationStep = 0; + const favicon = document.querySelector("link[rel='icon']"); + const updateTab = () => { + const currentAnimation = animation[tabAnimationStep % animation.length]; + favicon.href = `data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y=".9em" font-size="90">${currentAnimation.emoji}</text></svg>`; + document.title = currentAnimation.title; + tabAnimationStep++; + setTimeout(updateTab, 1000); + }; + + updateTab(); + </script> +</html> |
