- Standardize all page wrappers to use consistent min-h-screen bg-background pattern - Remove Layout wrapper usage from pages that had it - Remove page-level SocialShare and headers, move into components - Add showSocialShare prop to all interactive components for consistent control - Add Cmd+K / Ctrl+K command palette search across all interactives - Export allInteractives from InteractiveIndex for reuse Co-Authored-By: Neeldhara Misra <mail@neeldhara.com>
13 lines
No EOL
332 B
TypeScript
13 lines
No EOL
332 B
TypeScript
import AssistedNimGame from '@/components/AssistedNimGame';
|
|
|
|
const AssistedNimGamePage = () => {
|
|
return (
|
|
<div className="min-h-screen bg-background">
|
|
<div className="container mx-auto px-4 py-8">
|
|
<AssistedNimGame showSocialShare={true} />
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default AssistedNimGamePage;
|