blob: 61414724c93b8ece7aee1d173ad86511edeeeac0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
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>
|