Add Cube Coloring interactive
This commit is contained in:
parent
7a166fc8d0
commit
9a127a5e22
7 changed files with 1160 additions and 22 deletions
17
src/pages/CubeColoringPage.tsx
Normal file
17
src/pages/CubeColoringPage.tsx
Normal 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;
|
||||
Loading…
Add table
Add a link
Reference in a new issue