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 (