import Card from '@/components/ui/Card'; interface DropRulesExplanationProps { dropPolicyDescription: string; } export function DropRulesExplanation({ dropPolicyDescription }: DropRulesExplanationProps) { // Don't show if all results count const hasDropRules = !dropPolicyDescription.toLowerCase().includes('all results count'); if (!hasDropRules) { return null; } return (

Drop Score Rules

How your worst results are handled

{dropPolicyDescription}

Drop rules are applied automatically when calculating championship standings. Focus on racing — the system handles the rest.

); }