Add Craps game interactive

This commit is contained in:
gpt-engineer-app[bot] 2025-09-05 04:07:43 +00:00
parent f72073358b
commit 36d3b20bff
3 changed files with 277 additions and 0 deletions

View file

@ -0,0 +1,12 @@
import Layout from "@/components/Layout";
import CrapsGame from "@/components/CrapsGame";
const CrapsGamePage = () => {
return (
<Layout>
<CrapsGame showSocialShare={true} />
</Layout>
);
};
export default CrapsGamePage;