New web project with Beat Saber tools

This commit is contained in:
Brian Lee
2025-08-09 00:16:28 -07:00
commit 6c2066d784
41 changed files with 11037 additions and 0 deletions
+55
View File
@@ -0,0 +1,55 @@
<section class="grid items-center gap-10 py-12 md:py-20 lg:grid-cols-2">
<div class="space-y-6">
<h1 class="font-display text-4xl sm:text-5xl lg:text-6xl leading-tight">
Beat Saber tools for the <span class="neon-text">cyber</span> underground
</h1>
<p class="max-w-prose text-lg text-muted">
Mods, maps, practice helpers and utilities. Tuned for performance. Styled for neon.
</p>
<div class="flex flex-wrap gap-3">
<a href="/tools" class="btn-neon">Explore Tools</a>
<a href="/guides" class="inline-flex items-center gap-2 rounded-md border border-white/10 px-4 py-2 text-white/80 hover:text-white hover:border-white/30 transition">Read Guides</a>
</div>
</div>
<div class="relative">
<div class="absolute -inset-6 bg-gradient-to-tr from-neon/20 via-transparent to-neon-fuchsia/20 blur-2xl rounded-3xl"></div>
<div class="relative card-surface p-6 sm:p-8">
<div class="grid grid-cols-2 gap-4">
<div class="rounded-lg bg-black/30 ring-1 ring-white/10 p-4">
<div class="text-sm text-muted">PP Calculator</div>
<div class="mt-1 text-2xl font-mono">Soon</div>
</div>
<div class="rounded-lg bg-black/30 ring-1 ring-white/10 p-4">
<div class="text-sm text-muted">Map Search</div>
<div class="mt-1 text-2xl font-mono">Soon</div>
</div>
<div class="rounded-lg bg-black/30 ring-1 ring-white/10 p-4">
<div class="text-sm text-muted">Replay Analyzer</div>
<div class="mt-1 text-2xl font-mono">Soon</div>
</div>
<div class="rounded-lg bg-black/30 ring-1 ring-white/10 p-4">
<div class="text-sm text-muted">Practice Slicer</div>
<div class="mt-1 text-2xl font-mono">Soon</div>
</div>
</div>
</div>
</div>
</section>
<section class="py-8">
<h2 class="font-display text-2xl tracking-widest text-muted mb-4">Featured tools</h2>
<div class="grid gap-4 sm:grid-cols-2 lg:grid-cols-3">
{#each Array.from({ length: 6 }) as _, i}
<article class="card-surface p-5">
<h3 class="font-semibold">Tool {i + 1}</h3>
<p class="mt-1 text-sm text-muted">
Coming soon. Have an idea? Open an issue or PR.
</p>
<div class="mt-4">
<button class="btn-neon">Learn more</button>
</div>
</article>
{/each}
</div>
</section>