File size: 809 Bytes
aeb9637
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import { useTranslation } from "@/hooks/useTranslation";

interface LeaderboardHeaderProps {
  currentScore?: number;
  avgWordsPerRound?: number;
  showScoreInfo: boolean;
}

export const LeaderboardHeader = ({ currentScore, avgWordsPerRound, showScoreInfo }: LeaderboardHeaderProps) => {
  const t = useTranslation();

  return (
    <div className="text-center">
      <h2 className="text-2xl font-bold mb-2">{t.leaderboard.title}</h2>
      {showScoreInfo && currentScore !== undefined && (
        <p className="text-gray-600">
          {t.leaderboard.yourScore}: {currentScore} {t.leaderboard.roundCount}
          {currentScore > 0 &&
            avgWordsPerRound !== undefined &&
            ` (${avgWordsPerRound.toFixed(1)} ${t.leaderboard.wordsPerRound})`}
        </p>
      )}
    </div>
  );
};