Add Cube Coloring interactive

This commit is contained in:
gpt-engineer-app[bot] 2025-10-28 05:18:26 +00:00
parent 7a166fc8d0
commit 9a127a5e22
7 changed files with 1160 additions and 22 deletions

View file

@ -0,0 +1,17 @@
import Layout from '@/components/Layout';
import CubeColoring from '@/components/CubeColoring';
const CubeColoringPage = () => {
return (
<Layout>
<div className="container mx-auto px-4 py-8">
<CubeColoring
showSocialShare={true}
shareUrl={window.location.href}
/>
</div>
</Layout>
);
};
export default CubeColoringPage;