This commit is contained in:
gpt-engineer-app[bot] 2026-01-12 09:39:02 +00:00
parent dee3482dfa
commit 55c01cea33
4 changed files with 744 additions and 0 deletions

View file

@ -0,0 +1,14 @@
import Layout from "@/components/Layout";
import BagchalGame from "@/components/BagchalGame";
const BagchalGamePage = () => {
return (
<Layout>
<div className="container mx-auto px-4 py-8">
<BagchalGame showSocialShare={true} />
</div>
</Layout>
);
};
export default BagchalGamePage;