diff --git a/src/components/PresentsPuzzle.tsx b/src/components/PresentsPuzzle.tsx index e84e976..62e096a 100644 --- a/src/components/PresentsPuzzle.tsx +++ b/src/components/PresentsPuzzle.tsx @@ -357,6 +357,34 @@ const PresentsPuzzle = ({ showSocialShare = false, shareUrl }: PresentsPuzzlePro

+ + {/* Acknowledgement */} + + +

🙏 Acknowledgement

+

+ This simulation was inspired by{' '} + + this tweet + + {' '}by Daniel Litt, which in turn is a variation of{' '} + + this puzzle + + {' '}by Gil Kalai. +

+
+
diff --git a/src/pages/PresentsPuzzlePage.tsx b/src/pages/PresentsPuzzlePage.tsx index 615eaa9..47e365c 100644 --- a/src/pages/PresentsPuzzlePage.tsx +++ b/src/pages/PresentsPuzzlePage.tsx @@ -1,7 +1,14 @@ +import Layout from '@/components/Layout'; import PresentsPuzzle from "@/components/PresentsPuzzle"; const PresentsPuzzlePage = () => { - return ; + return ( + +
+ +
+
+ ); }; export default PresentsPuzzlePage;