Make Northcott's Game standalone

Give Northcott's Game a unique ID and make it accessible as a standalone interactive.
This commit is contained in:
gpt-engineer-app[bot] 2025-07-21 07:09:10 +00:00
parent 92026405a1
commit cd588e391a
3 changed files with 23 additions and 0 deletions

View file

@ -0,0 +1,13 @@
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;