Add Guessing Game

Implement a guessing game with user-selectable range via slider. Includes two modes: user guesses computer's number, and computer guesses user's number using random, linear, or binary search strategies.
This commit is contained in:
gpt-engineer-app[bot] 2025-08-10 13:38:45 +00:00
parent aaa3b7f06f
commit a981f2ec87
4 changed files with 559 additions and 0 deletions

View file

@ -0,0 +1,13 @@
import GuessingGame from '@/components/GuessingGame';
const GuessingGamePage = () => {
return (
<div className="min-h-screen bg-background">
<div className="container mx-auto px-4 py-8">
<GuessingGame showSocialShare={true} />
</div>
</div>
);
};
export default GuessingGamePage;