import { Button } from "@/components/ui/button"; import { motion } from "framer-motion"; interface GameOverProps { successfulRounds: number; onPlayAgain: () => void; } export const GameOver = ({ successfulRounds, onPlayAgain, }: GameOverProps) => { return (

Game Over!

You completed {successfulRounds} rounds successfully!

); };