Polish text on pages

This commit is contained in:
pleb 2025-11-03 15:28:57 -08:00
parent 2f37126617
commit 60986f8c81
4 changed files with 12 additions and 7 deletions

View File

@ -4,7 +4,7 @@
helper tools for <span class="neon-text">Beat Saber</span> helper tools for <span class="neon-text">Beat Saber</span>
</h1> </h1>
<p class="max-w-prose text-lg text-muted"> <p class="max-w-prose text-lg text-muted">
Notes about how things work, helpers and utilities. Notes about how things work and utilities for finding maps to play.
</p> </p>
<div class="flex flex-wrap gap-3"> <div class="flex flex-wrap gap-3">
<a href="/tools" class="btn-neon">Explore Tools</a> <a href="/tools" class="btn-neon">Explore Tools</a>
@ -18,7 +18,7 @@
<div class="grid grid-cols-2 gap-4"> <div class="grid grid-cols-2 gap-4">
<a href="/tools/compare-histories" class="rounded-lg bg-black/30 ring-1 ring-white/10 p-4 block hover:ring-white/20 transition"> <a href="/tools/compare-histories" class="rounded-lg bg-black/30 ring-1 ring-white/10 p-4 block hover:ring-white/20 transition">
<div class="text-sm text-muted">Tool</div> <div class="text-sm text-muted">Tool</div>
<div class="mt-1 text-2xl font-mono">Compare PlayerHistories</div> <div class="mt-1 text-2xl font-mono">Player History Comparison</div>
<div class="mt-1 text-sm text-muted">A vs B: songs A played that B has not</div> <div class="mt-1 text-sm text-muted">A vs B: songs A played that B has not</div>
</a> </a>

View File

@ -1,7 +1,7 @@
<section class="py-8 prose prose-invert max-w-none"> <section class="py-8 prose prose-invert max-w-none">
<h1 class="font-display tracking-widest">Finding New Songs with BeatLeader</h1> <h1 class="font-display tracking-widest">Finding New Songs with BeatLeader</h1>
<p> <p>
A fast, repeatable workflow to discover fresh maps using BeatLeaders powerful search. It relies on A slow, but repeatable workflow to discover fresh maps using BeatLeaders powerful search. This relies on
supporteronly unranked star ratings (<code>ShowAllRatings</code>) and sorts by <strong>techRating</strong> to surface interesting patterns. supporteronly unranked star ratings (<code>ShowAllRatings</code>) and sorts by <strong>techRating</strong> to surface interesting patterns.
</p> </p>
@ -16,11 +16,11 @@
<h2 id="requirements">Requirements</h2> <h2 id="requirements">Requirements</h2>
<ul> <ul>
<li><strong>BeatLeader supporter</strong> role on your BL account (Patreon/tipper/supporter/sponsor).</li> <li><strong>BeatLeader supporter</strong> role on your BL account (Patreon/tipper/supporter/sponsor).</li>
<li><strong><code>ShowAllRatings</code></strong> enabled on your BL profile. See <a href="/guides/beatleader-auth">BeatLeader Authentication</a> for how to sign in and enable it.</li> <li><strong><code>ShowAllRatings</code></strong> enabled on your BL profile. Navigate to the Leaderboard section in <a href="https://beatleader.com/settings#leaderboard" target="_blank" rel="noreferrer">Beatleader settings</a> and enable "Show rating for all maps"</li>
</ul> </ul>
<h2 id="search-setup">Search setup</h2> <h2 id="search-setup">Search setup</h2>
<p>Use the BeatLeader maps search with these filters:</p> <p>Use the BeatLeader map search with these filters:</p>
<ul> <ul>
<li><strong>Date range</strong>: pick a single month (e.g., Dec 1 → Jan 1). Iterate month by month.</li> <li><strong>Date range</strong>: pick a single month (e.g., Dec 1 → Jan 1). Iterate month by month.</li>
<li><strong>Stars</strong>: set a band to control density and overall difficulty (e.g., <strong>810</strong> for fun, <strong>68</strong> for warmups).</li> <li><strong>Stars</strong>: set a band to control density and overall difficulty (e.g., <strong>810</strong> for fun, <strong>68</strong> for warmups).</li>

View File

@ -179,7 +179,10 @@
<section class="py-8"> <section class="py-8">
<h1 class="font-display text-3xl sm:text-4xl">Compare Play Histories</h1> <h1 class="font-display text-3xl sm:text-4xl">Compare Play Histories</h1>
<p class="mt-2 text-muted">Maps Player A has played that Player B hasn't — configurable lookback.</p> <p class="mt-2 text-muted max-w-2xl">
Maps Player A has played that Player B has not.
This tool can be useful for finding songs to <code>!bsr</code> in Twitch streams, so we can recommend songs that we've played that the streamer has not.
</p>
<HasToolAccess player={playerProfile} requirement={requirement} {adminRank} adminPlayer={adminPlayer}> <HasToolAccess player={playerProfile} requirement={requirement} {adminRank} adminPlayer={adminPlayer}>
<PlayerCompareForm bind:playerA bind:playerB {loading} hasResults={results.length > 0} oncompare={onCompare} currentPlayer={playerProfile}> <PlayerCompareForm bind:playerA bind:playerB {loading} hasResults={results.length > 0} oncompare={onCompare} currentPlayer={playerProfile}>

View File

@ -313,7 +313,9 @@
<section class="py-8"> <section class="py-8">
<h1 class="font-display text-3xl sm:text-4xl">Player Head-to-Head</h1> <h1 class="font-display text-3xl sm:text-4xl">Player Head-to-Head</h1>
<p class="mt-2 text-muted">Paginated head-to-head results on the same map and difficulty.</p> <p class="mt-2 text-muted max-w-2xl">
Compare two players on maps they've both played.
</p>
<HasToolAccess player={playerProfile} requirement={requirement} {adminRank} adminPlayer={adminPlayer}> <HasToolAccess player={playerProfile} requirement={requirement} {adminRank} adminPlayer={adminPlayer}>
<PlayerCompareForm bind:playerA bind:playerB {loading} hasResults={items.length > 0} oncompare={onCompare} currentPlayer={playerProfile} /> <PlayerCompareForm bind:playerA bind:playerB {loading} hasResults={items.length > 0} oncompare={onCompare} currentPlayer={playerProfile} />