Update how-to-play scoring rules to match standard scoring

- Update placement points: 1st 100, 2nd 70, 3rd-4th 45, 5th-8th 20
- Add Counter-Strike to the special majors scoring section alongside Golf & Tennis
- Add qualifying points breakdown (8/5/3/2/1) per major tournament

https://claude.ai/code/session_01JUAqVZgo7M7XRBLzpeaWpH
This commit is contained in:
Claude 2026-02-20 17:48:38 +00:00
parent eb7aa42cef
commit dc52002d82
No known key found for this signature in database

View file

@ -53,15 +53,15 @@ export default function HowToPlay() {
<div className="bg-muted p-6 rounded-lg space-y-2">
<div className="flex justify-between items-center">
<span className="font-semibold">🥇 1st Place</span>
<span className="text-xl font-bold">80 points</span>
<span className="text-xl font-bold">100 points</span>
</div>
<div className="flex justify-between items-center">
<span className="font-semibold">🥈 2nd Place</span>
<span className="text-xl font-bold">50 points</span>
<span className="text-xl font-bold">70 points</span>
</div>
<div className="flex justify-between items-center">
<span className="font-semibold">🥉 3rd-4th Place</span>
<span className="text-xl font-bold">30 points</span>
<span className="text-xl font-bold">45 points</span>
</div>
<div className="flex justify-between items-center">
<span className="font-semibold">5th-8th Place</span>
@ -76,27 +76,37 @@ export default function HowToPlay() {
<section>
<h2 className="text-2xl font-semibold mb-4">
Special Scoring for Golf & Tennis
Special Scoring for Golf, Tennis & Counter-Strike
</h2>
<p className="text-lg text-muted-foreground mb-4">
Golf and tennis work a bit differently since they have multiple
major tournaments:
Golf, tennis, and Counter-Strike work a bit differently since they
each have multiple major tournaments throughout the year:
</p>
<ul className="list-disc list-inside space-y-2 text-muted-foreground ml-4">
<li>
Players earn qualifying points at each major tournament throughout
the year
Players/teams earn qualifying points at each major tournament
throughout the year
</li>
<li>
After all majors are complete, we add up everyone's qualifying
points
</li>
<li>
The top 8 players by total qualifying points then earn the regular
scoring points (80, 50, 30, 20)
The top 8 by total qualifying points then earn the regular scoring
points (100, 70, 45, 20)
</li>
<li>This rewards consistency across all the major tournaments!</li>
</ul>
<div className="bg-muted p-4 rounded-lg mt-4">
<p className="font-semibold mb-2">Qualifying points per major:</p>
<div className="grid grid-cols-2 gap-1 text-sm text-muted-foreground">
<span>1st Place</span><span className="font-medium">8 QP</span>
<span>2nd Place</span><span className="font-medium">5 QP</span>
<span>3rd Place</span><span className="font-medium">3 QP</span>
<span>4th Place</span><span className="font-medium">2 QP</span>
<span>5th Place</span><span className="font-medium">1 QP</span>
</div>
</div>
</section>
<section>