Add Plate Swap Puzzle with full functionality and attribution

This commit is contained in:
Neeldhara Misra 2025-07-22 04:47:21 +05:30
parent 99482e4314
commit d9c0c88333
5 changed files with 555 additions and 0 deletions

View file

@ -0,0 +1,12 @@
import React from 'react';
import PlateSwapPuzzle from '@/components/PlateSwapPuzzle';
const PlateSwapPuzzlePage = () => {
return (
<div className="min-h-screen bg-background">
<PlateSwapPuzzle showSocialShare={true} />
</div>
);
};
export default PlateSwapPuzzlePage;