-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
120 lines (113 loc) · 3.8 KB
/
index.html
File metadata and controls
120 lines (113 loc) · 3.8 KB
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>UI/UX Rankings — ChatGPT vs Google vs WhatsApp</title>
<style>
body {
font-family: 'Georgia', serif;
margin: 0;
padding: 2rem;
background-color: #f9f9f9;
color: #222;
transition: background 0.3s, color 0.3s;
}
h1 {
font-size: 2.2rem;
margin-bottom: 0.5rem;
}
h2 {
font-size: 1.5rem;
margin-top: 2rem;
border-bottom: 2px solid #ccc;
padding-bottom: 0.2rem;
}
.score {
font-weight: bold;
color: #666;
font-size: 1rem;
}
.verdict {
font-style: italic;
margin: 0.5rem 0 1.5rem;
}
.block {
padding: 1rem 1.5rem;
margin-bottom: 2rem;
border-radius: 10px;
background: #ffffff;
box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.toggle {
position: fixed;
top: 1rem;
right: 1rem;
cursor: pointer;
background: #222;
color: white;
padding: 0.4rem 0.8rem;
border: none;
border-radius: 6px;
font-size: 0.9rem;
}
.dark-mode {
background-color: #1e1e1e;
color: #eee;
}
.dark-mode .block {
background: #2b2b2b;
box-shadow: 0 2px 8px rgba(255,255,255,0.05);
}
</style>
</head>
<body>
<button class="toggle" onclick="toggleMode()">🌓 Toggle Dark Mode</button>
<h1><a href="https://abikesa.github.io/love/">UI/UX</a> Rankings</h1>
<p><strong>ChatGPT, Google, WhatsApp — who reigns <a href="https://abikesa.github.io/grounding/">supreme</a>?</strong></p>
<div class="block">
<h2>🧠 ChatGPT (OpenAI) <span class="score">— 9.5/10</span></h2>
<ul>
<li><strong>Zero friction:</strong> No menus, no bloat, just a text box.</li>
<li><strong>Instant feedback:</strong> Feels alive and conversational.</li>
<li><strong>No distractions:</strong> Minimalist UI, UX is the star.</li>
<li><strong>Subtle cues:</strong> Typing animations, stop button, chat history.</li>
</ul>
<p><em>Why not a perfect 10?</em> Lacks emotional cues and long chats get unwieldy.</p>
<p class="verdict">Verdict: UI disappears so UX can dominate. Pure elegance through constraint.</p>
</div>
<div class="block">
<h2>🌍 Google Search <span class="score">— 9/10</span></h2>
<ul>
<li><strong>Speed:</strong> Legendary sub-second answers.</li>
<li><strong>Autocomplete & snippets:</strong> Like a mind reader.</li>
<li><strong>Familiarity:</strong> Everyone from toddlers to hackers gets it.</li>
</ul>
<p><em>Why not perfect?</em> Ad clutter and off-site navigation reduce flow.</p>
<p class="verdict">Verdict: Speed + precision. But it's showing its age under the ad load.</p>
</div>
<div class="block">
<h2>💬 WhatsApp <span class="score">— 10/10</span></h2>
<ul>
<li><strong>Muscle memory UX:</strong> Open → Tap → Message → Done.</li>
<li><strong>Emotional clarity:</strong> Ticks, audio replies, expressive tools.</li>
<li><strong>Voice-friendly:</strong> Perfect for human, asynchronous intimacy.</li>
<li><strong>Global dominance:</strong> Billion+ daily users with zero manual.</li>
</ul>
<p class="verdict">Verdict: Possibly the most emotionally fluent UX in modern software.</p>
</div>
<div class="block">
<h2>🔥 Final Ranking</h2>
<ol>
<li><strong>WhatsApp</strong> – Ambient, emotional, frictionless.</li>
<li><strong>ChatGPT</strong> – Flow-state cognition, no distractions.</li>
<li><strong>Google</strong> – Blazing fast, but slightly bloated.</li>
</ol>
</div>
<script>
function toggleMode() {
document.body.classList.toggle('dark-mode');
}
</script>
</body>
</html>