This commit is contained in:
gpt-engineer-app[bot] 2026-01-22 03:04:28 +00:00
parent f4f633f420
commit 828f2dba66
5 changed files with 939 additions and 0 deletions

View file

@ -0,0 +1,16 @@
import Layout from "@/components/Layout";
import ErdosDiscrepancyPuzzle from "@/components/ErdosDiscrepancyPuzzle";
const ErdosDiscrepancyPuzzlePage = () => {
return (
<Layout>
<div className="py-8 px-4">
<div className="max-w-6xl mx-auto">
<ErdosDiscrepancyPuzzle showSocialShare={true} />
</div>
</div>
</Layout>
);
};
export default ErdosDiscrepancyPuzzlePage;