13 lines
No EOL
323 B
TypeScript
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; |