interactives/src/pages/NorthcottsGamePage.tsx
gpt-engineer-app[bot] cd588e391a Make Northcott's Game standalone
Give Northcott's Game a unique ID and make it accessible as a standalone interactive.
2025-07-21 07:09:10 +00:00

13 lines
No EOL
323 B
TypeScript

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