-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
351 lines (317 loc) · 22.5 KB
/
index.html
File metadata and controls
351 lines (317 loc) · 22.5 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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Vibe Code Creations</title>
<!-- Tailwind CSS -->
<script src="https://cdn.tailwindcss.com"></script>
<!-- Google Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<!-- Lucide Icons -->
<script src="https://unpkg.com/lucide@latest"></script>
<style>
body {
font-family: 'Space Grotesk', sans-serif;
background-color: #0f172a;
overflow-x: hidden;
}
/* Animated Background Blobs */
.blob {
position: absolute;
border-radius: 50%;
filter: blur(80px);
z-index: -1;
opacity: 0.6;
animation: float 20s infinite ease-in-out alternate;
}
.blob-1 { top: -10%; left: -10%; width: 50vw; height: 50vw; background: #4f46e5; animation-delay: 0s; }
.blob-2 { bottom: -10%; right: -10%; width: 50vw; height: 50vw; background: #ec4899; animation-delay: -5s; }
.blob-3 { top: 40%; left: 40%; width: 30vw; height: 30vw; background: #06b6d4; animation-delay: -10s; }
@keyframes float {
0% { transform: translate(0, 0) scale(1); }
50% { transform: translate(30px, 50px) scale(1.1); }
100% { transform: translate(-20px, -30px) scale(0.9); }
}
/* Glass Card Utility */
.glass-card {
background: rgba(255, 255, 255, 0.05);
backdrop-filter: blur(16px);
-webkit-backdrop-filter: blur(16px);
border: 1px solid rgba(255, 255, 255, 0.1);
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}
.glass-card:hover {
background: rgba(255, 255, 255, 0.1);
border-color: rgba(255, 255, 255, 0.2);
box-shadow: 0 0 20px rgba(79, 70, 229, 0.4);
transform: translateY(-5px);
}
</style>
</head>
<body class="text-white min-h-screen relative selection:bg-pink-500 selection:text-white">
<!-- Background Elements -->
<div class="fixed inset-0 overflow-hidden pointer-events-none">
<div class="blob blob-1"></div>
<div class="blob blob-2"></div>
<div class="blob blob-3"></div>
</div>
<!-- Main Content -->
<main class="relative z-10 container mx-auto px-6 py-20">
<!-- Header -->
<header class="mb-20 text-center">
<h1 class="text-6xl md:text-8xl font-bold bg-clip-text text-transparent bg-gradient-to-r from-cyan-300 via-purple-300 to-pink-300 mb-6 tracking-tighter">
Vibe Code
</h1>
<p class="text-xl md:text-2xl text-gray-300 font-light max-w-2xl mx-auto">
A collection of digital artifacts, tools, and experiments.
</p>
</header>
<!-- Grid -->
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Card: Ichiban Kuji -->
<a href="kuji-calculator/" class="glass-card rounded-3xl p-8 transition-all duration-300 group flex flex-col h-full">
<div class="mb-6 bg-gradient-to-br from-blue-500/20 to-purple-500/20 w-16 h-16 rounded-2xl flex items-center justify-center group-hover:scale-110 transition-transform duration-300 border border-white/10">
<i data-lucide="calculator" class="w-8 h-8 text-blue-300"></i>
</div>
<h2 class="text-2xl font-bold mb-3 group-hover:text-blue-300 transition-colors">Kuji Strategist</h2>
<p class="text-gray-400 text-sm leading-relaxed mb-6 flex-grow">
Calculate expected values and sniping opportunities for Ichiban Kuji lottery games.
</p>
<div class="flex items-center text-xs font-bold text-blue-300 uppercase tracking-widest">
Launch Tool <i data-lucide="arrow-right" class="w-4 h-4 ml-2 group-hover:translate-x-1 transition-transform"></i>
</div>
</a>
<!-- Card: Songwriter's Codex -->
<a href="songwriter-codex/" class="glass-card rounded-3xl p-8 transition-all duration-300 group flex flex-col h-full">
<div class="mb-6 bg-gradient-to-br from-amber-500/20 to-orange-500/20 w-16 h-16 rounded-2xl flex items-center justify-center group-hover:scale-110 transition-transform duration-300 border border-white/10">
<i data-lucide="music" class="w-8 h-8 text-amber-300"></i>
</div>
<h2 class="text-2xl font-bold mb-3 group-hover:text-amber-300 transition-colors">Songwriter's Codex</h2>
<p class="text-gray-400 text-sm leading-relaxed mb-6 flex-grow">
Composition tool with chord builders, sequencers, and VexFlow notation.
</p>
<div class="flex items-center text-xs font-bold text-amber-300 uppercase tracking-widest">
Compose <i data-lucide="arrow-right" class="w-4 h-4 ml-2 group-hover:translate-x-1 transition-transform"></i>
</div>
</a>
<!-- Card: Ear Trainer -->
<a href="ear-trainer/" class="glass-card rounded-3xl p-8 transition-all duration-300 group flex flex-col h-full">
<div class="mb-6 bg-gradient-to-br from-teal-500/20 to-cyan-500/20 w-16 h-16 rounded-2xl flex items-center justify-center group-hover:scale-110 transition-transform duration-300 border border-white/10">
<i data-lucide="headphones" class="w-8 h-8 text-cyan-300"></i>
</div>
<h2 class="text-2xl font-bold mb-3 group-hover:text-cyan-300 transition-colors">Ear Trainer</h2>
<p class="text-gray-400 text-sm leading-relaxed mb-6 flex-grow">
Functional note, interval, chord, scale, and progression drills with notation and keyboard shortcuts.
</p>
<div class="flex items-center text-xs font-bold text-cyan-300 uppercase tracking-widest">
Train <i data-lucide="arrow-right" class="w-4 h-4 ml-2 group-hover:translate-x-1 transition-transform"></i>
</div>
</a>
<!-- Card: Darts Counter -->
<a href="darts-counter/" class="glass-card rounded-3xl p-8 transition-all duration-300 group flex flex-col h-full">
<div class="mb-6 bg-gradient-to-br from-emerald-500/20 to-teal-500/20 w-16 h-16 rounded-2xl flex items-center justify-center group-hover:scale-110 transition-transform duration-300 border border-white/10">
<i data-lucide="crosshair" class="w-8 h-8 text-emerald-300"></i>
</div>
<h2 class="text-2xl font-bold mb-3 group-hover:text-emerald-300 transition-colors">Darts Counter</h2>
<p class="text-gray-400 text-sm leading-relaxed mb-6 flex-grow">
Voice-controlled 501 scoreboard with checkout guides and stats.
</p>
<div class="flex items-center text-xs font-bold text-emerald-300 uppercase tracking-widest">
Play <i data-lucide="arrow-right" class="w-4 h-4 ml-2 group-hover:translate-x-1 transition-transform"></i>
</div>
</a>
<!-- Card: Saize Quiz -->
<a href="saize-quiz/" class="glass-card rounded-3xl p-8 transition-all duration-300 group flex flex-col h-full">
<div class="mb-6 bg-gradient-to-br from-red-500/20 to-pink-500/20 w-16 h-16 rounded-2xl flex items-center justify-center group-hover:scale-110 transition-transform duration-300 border border-white/10">
<i data-lucide="utensils" class="w-8 h-8 text-red-300"></i>
</div>
<h2 class="text-2xl font-bold mb-3 group-hover:text-red-300 transition-colors">Saize Quiz</h2>
<p class="text-gray-400 text-sm leading-relaxed mb-6 flex-grow">
Test your knowledge of the Saizeriya menu. Become the Saize God.
</p>
<div class="flex items-center text-xs font-bold text-red-300 uppercase tracking-widest">
Start Quiz <i data-lucide="arrow-right" class="w-4 h-4 ml-2 group-hover:translate-x-1 transition-transform"></i>
</div>
</a>
<!-- Card: Snap Me -->
<a href="snapme/" class="glass-card rounded-3xl p-8 transition-all duration-300 group flex flex-col h-full">
<div class="mb-6 bg-gradient-to-br from-indigo-500/20 to-violet-500/20 w-16 h-16 rounded-2xl flex items-center justify-center group-hover:scale-110 transition-transform duration-300 border border-white/10">
<i data-lucide="camera" class="w-8 h-8 text-indigo-300"></i>
</div>
<h2 class="text-2xl font-bold mb-3 group-hover:text-indigo-300 transition-colors">Snap Me</h2>
<p class="text-gray-400 text-sm leading-relaxed mb-6 flex-grow">
Chat application with integrated camera functionality for seamless sharing.
</p>
<div class="flex items-center text-xs font-bold text-indigo-300 uppercase tracking-widest">
Open Camera <i data-lucide="arrow-right" class="w-4 h-4 ml-2 group-hover:translate-x-1 transition-transform"></i>
</div>
</a>
<!-- Card: Letter Checker -->
<a href="otayori-check/" class="glass-card rounded-3xl p-8 transition-all duration-300 group flex flex-col h-full">
<div class="mb-6 bg-gradient-to-br from-cyan-500/20 to-sky-500/20 w-16 h-16 rounded-2xl flex items-center justify-center group-hover:scale-110 transition-transform duration-300 border border-white/10">
<i data-lucide="mail-check" class="w-8 h-8 text-cyan-300"></i>
</div>
<h2 class="text-2xl font-bold mb-3 group-hover:text-cyan-300 transition-colors">Letter Checker</h2>
<p class="text-gray-400 text-sm leading-relaxed mb-6 flex-grow">
AI-powered evaluation for letter content, safety, and improvements.
</p>
<div class="flex items-center text-xs font-bold text-cyan-300 uppercase tracking-widest">
Check <i data-lucide="arrow-right" class="w-4 h-4 ml-2 group-hover:translate-x-1 transition-transform"></i>
</div>
</a>
<!-- Card: 5L Schedule -->
<a href="5l-schedule/" class="glass-card rounded-3xl p-8 transition-all duration-300 group flex flex-col h-full">
<div class="mb-6 bg-gradient-to-br from-fuchsia-500/20 to-pink-500/20 w-16 h-16 rounded-2xl flex items-center justify-center group-hover:scale-110 transition-transform duration-300 border border-white/10">
<i data-lucide="calendar" class="w-8 h-8 text-fuchsia-300"></i>
</div>
<h2 class="text-2xl font-bold mb-3 group-hover:text-fuchsia-300 transition-colors">5L Schedule</h2>
<p class="text-gray-400 text-sm leading-relaxed mb-6 flex-grow">
Quick reference schedule planner.
</p>
<div class="flex items-center text-xs font-bold text-fuchsia-300 uppercase tracking-widest">
View <i data-lucide="arrow-right" class="w-4 h-4 ml-2 group-hover:translate-x-1 transition-transform"></i>
</div>
</a>
<!-- Card: Mosaic -->
<a href="mosaic/" class="glass-card rounded-3xl p-8 transition-all duration-300 group flex flex-col h-full">
<div class="mb-6 bg-gradient-to-br from-gray-500/20 to-slate-500/20 w-16 h-16 rounded-2xl flex items-center justify-center group-hover:scale-110 transition-transform duration-300 border border-white/10">
<i data-lucide="grid" class="w-8 h-8 text-gray-300"></i>
</div>
<h2 class="text-2xl font-bold mb-3 group-hover:text-white transition-colors">Mosaic Tool</h2>
<p class="text-gray-400 text-sm leading-relaxed mb-6 flex-grow">
Interactive image pixelation tool with brush and region selection.
</p>
<div class="flex items-center text-xs font-bold text-gray-300 uppercase tracking-widest">
Pixelate <i data-lucide="arrow-right" class="w-4 h-4 ml-2 group-hover:translate-x-1 transition-transform"></i>
</div>
</a>
<!-- Card: Automatic Transcriber -->
<a href="automatic-transcriber/" class="glass-card rounded-3xl p-8 transition-all duration-300 group flex flex-col h-full">
<div class="mb-6 bg-gradient-to-br from-blue-500/20 to-sky-500/20 w-16 h-16 rounded-2xl flex items-center justify-center group-hover:scale-110 transition-transform duration-300 border border-white/10">
<i data-lucide="waves" class="w-8 h-8 text-blue-300"></i>
</div>
<h2 class="text-2xl font-bold mb-3 group-hover:text-blue-300 transition-colors">Automatic Transcriber</h2>
<p class="text-gray-400 text-sm leading-relaxed mb-6 flex-grow">
Analyze audio files to detect chords, beats, and key signature locally.
</p>
<div class="flex items-center text-xs font-bold text-blue-300 uppercase tracking-widest">
Transcribe <i data-lucide="arrow-right" class="w-4 h-4 ml-2 group-hover:translate-x-1 transition-transform"></i>
</div>
</a>
<!-- Card: HDR Flashbang -->
<a href="hdr-flashbang/" class="glass-card rounded-3xl p-8 transition-all duration-300 group flex flex-col h-full">
<div class="mb-6 bg-gradient-to-br from-yellow-500/20 to-orange-500/20 w-16 h-16 rounded-2xl flex items-center justify-center group-hover:scale-110 transition-transform duration-300 border border-white/10">
<i data-lucide="zap" class="w-8 h-8 text-yellow-300"></i>
</div>
<h2 class="text-2xl font-bold mb-3 group-hover:text-yellow-300 transition-colors">HDR Flashbang</h2>
<p class="text-gray-400 text-sm leading-relaxed mb-6 flex-grow">
Inject 16-bit PQ data into images to create extremely bright HDR content.
</p>
<div class="flex items-center text-xs font-bold text-yellow-300 uppercase tracking-widest">
Flashbang <i data-lucide="arrow-right" class="w-4 h-4 ml-2 group-hover:translate-x-1 transition-transform"></i>
</div>
</a>
<!-- Card: Levenshtein Visualizer -->
<a href="levanstein-visualizer/" class="glass-card rounded-3xl p-8 transition-all duration-300 group flex flex-col h-full">
<div class="mb-6 bg-gradient-to-br from-purple-500/20 to-indigo-500/20 w-16 h-16 rounded-2xl flex items-center justify-center group-hover:scale-110 transition-transform duration-300 border border-white/10">
<i data-lucide="git-compare" class="w-8 h-8 text-purple-300"></i>
</div>
<h2 class="text-2xl font-bold mb-3 group-hover:text-purple-300 transition-colors">Levenshtein Visualizer</h2>
<p class="text-gray-400 text-sm leading-relaxed mb-6 flex-grow">
Interactive visualization of the Levenshtein distance algorithm.
</p>
<div class="flex items-center text-xs font-bold text-purple-300 uppercase tracking-widest">
Visualize <i data-lucide="arrow-right" class="w-4 h-4 ml-2 group-hover:translate-x-1 transition-transform"></i>
</div>
</a>
<!-- Card: Namecard Print Prepper -->
<a href="namecard-prepper/" class="glass-card rounded-3xl p-8 transition-all duration-300 group flex flex-col h-full">
<div class="mb-6 bg-gradient-to-br from-slate-500/20 to-gray-500/20 w-16 h-16 rounded-2xl flex items-center justify-center group-hover:scale-110 transition-transform duration-300 border border-white/10">
<i data-lucide="printer" class="w-8 h-8 text-slate-300"></i>
</div>
<h2 class="text-2xl font-bold mb-3 group-hover:text-slate-300 transition-colors">Namecard Prepper</h2>
<p class="text-gray-400 text-sm leading-relaxed mb-6 flex-grow">
Prepare namecard PDFs for printing with auto-generated bleed and duplex alignment.
</p>
<div class="flex items-center text-xs font-bold text-slate-300 uppercase tracking-widest">
Prepress <i data-lucide="arrow-right" class="w-4 h-4 ml-2 group-hover:translate-x-1 transition-transform"></i>
</div>
</a>
<!-- Card: Image Comparator -->
<a href="image-comparator/" class="glass-card rounded-3xl p-8 transition-all duration-300 group flex flex-col h-full">
<div class="mb-6 bg-gradient-to-br from-orange-500/20 to-yellow-500/20 w-16 h-16 rounded-2xl flex items-center justify-center group-hover:scale-110 transition-transform duration-300 border border-white/10">
<i data-lucide="layers" class="w-8 h-8 text-orange-300"></i>
</div>
<h2 class="text-2xl font-bold mb-3 group-hover:text-orange-300 transition-colors">Image Comparator</h2>
<p class="text-gray-400 text-sm leading-relaxed mb-6 flex-grow">
Compare two images using various modes like split-view, opacity, difference, and blink.
</p>
<div class="flex items-center text-xs font-bold text-orange-300 uppercase tracking-widest">
Compare <i data-lucide="arrow-right" class="w-4 h-4 ml-2 group-hover:translate-x-1 transition-transform"></i>
</div>
</a>
<!-- Card: Snap Frame -->
<a href="snap-frame/" class="glass-card rounded-3xl p-8 transition-all duration-300 group flex flex-col h-full">
<div class="mb-6 bg-gradient-to-br from-rose-500/20 to-red-500/20 w-16 h-16 rounded-2xl flex items-center justify-center group-hover:scale-110 transition-transform duration-300 border border-white/10">
<i data-lucide="film" class="w-8 h-8 text-rose-300"></i>
</div>
<h2 class="text-2xl font-bold mb-3 group-hover:text-rose-300 transition-colors">Snap Frame</h2>
<p class="text-gray-400 text-sm leading-relaxed mb-6 flex-grow">
High-precision frame extractor and inspector for video analysis.
</p>
<div class="flex items-center text-xs font-bold text-rose-300 uppercase tracking-widest">
Extract <i data-lucide="arrow-right" class="w-4 h-4 ml-2 group-hover:translate-x-1 transition-transform"></i>
</div>
</a>
<!-- Card: PDF Batch Filler -->
<a href="pdf-batch-filler/" class="glass-card rounded-3xl p-8 transition-all duration-300 group flex flex-col h-full">
<div class="mb-6 bg-gradient-to-br from-violet-500/20 to-fuchsia-500/20 w-16 h-16 rounded-2xl flex items-center justify-center group-hover:scale-110 transition-transform duration-300 border border-white/10">
<i data-lucide="file-stack" class="w-8 h-8 text-violet-300"></i>
</div>
<h2 class="text-2xl font-bold mb-3 group-hover:text-violet-300 transition-colors">PDF Batch Filler</h2>
<p class="text-gray-400 text-sm leading-relaxed mb-6 flex-grow">
Define coordinate-based templates over PDFs and batch-generate populated outputs.
</p>
<div class="flex items-center text-xs font-bold text-violet-300 uppercase tracking-widest">
Fill PDFs <i data-lucide="arrow-right" class="w-4 h-4 ml-2 group-hover:translate-x-1 transition-transform"></i>
</div>
</a>
<!-- Card: Address Labels -->
<a href="address-labels/" class="glass-card rounded-3xl p-8 transition-all duration-300 group flex flex-col h-full">
<div class="mb-6 bg-gradient-to-br from-emerald-500/20 to-lime-500/20 w-16 h-16 rounded-2xl flex items-center justify-center group-hover:scale-110 transition-transform duration-300 border border-white/10">
<i data-lucide="tag" class="w-8 h-8 text-emerald-300"></i>
</div>
<h2 class="text-2xl font-bold mb-3 group-hover:text-emerald-300 transition-colors">Address Labels</h2>
<p class="text-gray-400 text-sm leading-relaxed mb-6 flex-grow">
Format and print address labels onto A4 sheets. CSV import, Japanese vertical/horizontal layout.
</p>
<div class="flex items-center text-xs font-bold text-emerald-300 uppercase tracking-widest">
Print Labels <i data-lucide="arrow-right" class="w-4 h-4 ml-2 group-hover:translate-x-1 transition-transform"></i>
</div>
</a>
<!-- Card: Marine Kanji Mastery -->
<a href="marine-kanji-mastery/" class="glass-card rounded-3xl p-8 transition-all duration-300 group flex flex-col h-full">
<div class="mb-6 bg-gradient-to-br from-blue-500/20 to-cyan-500/20 w-16 h-16 rounded-2xl flex items-center justify-center group-hover:scale-110 transition-transform duration-300 border border-white/10">
<i data-lucide="anchor" class="w-8 h-8 text-blue-300"></i>
</div>
<h2 class="text-2xl font-bold mb-3 group-hover:text-blue-300 transition-colors">Marine Kanji Mastery</h2>
<p class="text-gray-400 text-sm leading-relaxed mb-6 flex-grow">
Master the specialized kanji readings for fish and marine life through interactive quizzes.
</p>
<div class="flex items-center text-xs font-bold text-blue-300 uppercase tracking-widest">
Dive In <i data-lucide="arrow-right" class="w-4 h-4 ml-2 group-hover:translate-x-1 transition-transform"></i>
</div>
</a>
</div>
<footer class="mt-20 text-center text-gray-500 text-sm">
<p>© Vibe Code Creations. Built with Tailwind CSS.</p>
</footer>
</main>
<script>
lucide.createIcons();
</script>
</body>
</html>