import React from 'react'; import { Button } from '../components/ui/Button'; import { ArrowLeft, Rocket, Construction } from 'lucide-react'; interface GameProps { onExit: () => void; } export const MotoGorilla: React.FC = ({ onExit }) => { return (

FUN GAME

Under Construction

We are crafting a new experience. Check back soon for the ultimate fun protocol.

{/* Decorative elements */}
); };