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
+28
View File
@@ -0,0 +1,28 @@
<section class="py-8">
<h1 class="font-display text-3xl sm:text-4xl">Tools</h1>
<p class="mt-2 text-muted">A suite of utilities for Beat Saber players. More coming soon.</p>
<div class="mt-6 grid gap-4 sm:grid-cols-2 lg:grid-cols-3">
{#each [
{ name: 'BeatLeader Compare Players', href: '/tools/beatleader-compare', desc: 'Find songs A played that B has not' },
{ name: 'PP Calculator', href: '#pp', desc: 'Soon' },
{ name: 'Map Search', href: '#search', desc: 'Soon' },
{ name: 'Replay Analyzer', href: '#replay', desc: 'Soon' },
{ name: 'Practice Slicer', href: '#slicer', desc: 'Soon' }
] as tool}
<a href={tool.href} class="card-surface p-5 block">
<div class="font-semibold">{tool.name}</div>
<div class="mt-1 text-sm text-muted">{tool.desc}</div>
</a>
{/each}
</div>
<div class="sr-only">
<div id="pp"></div>
<div id="search"></div>
<div id="replay"></div>
<div id="slicer"></div>
</div>
</section>