File size: 1,285 Bytes
aeb9637
 
 
 
a64b653
 
aeb9637
 
 
 
a64b653
aeb9637
a64b653
aeb9637
 
 
a64b653
aeb9637
 
a64b653
 
 
 
 
 
 
aeb9637
 
 
 
 
a64b653
aeb9637
 
 
 
 
 
a64b653
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
import { Button } from "@/components/ui/button";
import { useTranslation } from "@/hooks/useTranslation";

interface MainActionsProps {
  onStartDaily: () => void;
  onStartNew: () => void;
  onShowHowToPlay: () => void;
  onShowHighScores: () => void;
}

export const MainActions = ({ onStartDaily: onStartDaily, onStartNew: onStartNew, onShowHowToPlay, onShowHighScores }: MainActionsProps) => {
  const t = useTranslation();

  return (
    <div className="space-y-4">
      <Button
        onClick={onStartDaily}
        className="w-full bg-primary text-lg hover:bg-primary/90"
      >
        {t.welcome.startDailyButton} ⏎
      </Button>
      <Button
        onClick={onStartNew}
        className="w-full bg-secondary text-lg hover:bg-secondary/90"
      >
        {t.welcome.startNewButton}
      </Button>
      <div className="grid grid-cols-2 gap-4">
        <Button
          onClick={onShowHowToPlay}
          variant="outline"
          className="text-lg hover:text-white"
        >
          {t.welcome.howToPlay} 📖
        </Button>
        <Button
          onClick={onShowHighScores}
          variant="outline"
          className="text-lg hover:text-white"
        >
          {t.welcome.leaderboard} 🏆
        </Button>
      </div>
    </div>
  );
};