Refactor Knights Puzzle layout

Remove header, footer, and "Classic" tag. Center the title and add a share section. Ensure unique URI.
This commit is contained in:
gpt-engineer-app[bot] 2025-07-21 09:18:40 +00:00
parent 6f6d52880f
commit 14a244160a
2 changed files with 14 additions and 9 deletions

View file

@ -1,11 +1,10 @@
import Layout from "@/components/Layout";
import KnightsPuzzle from "@/components/KnightsPuzzle";
const KnightsPuzzlePage = () => {
return (
<Layout>
<div className="min-h-screen bg-background">
<KnightsPuzzle showSocialShare={true} />
</Layout>
</div>
);
};