interactives/src/pages/theme-pages/Games.tsx
gpt-engineer-app[bot] 55b50ddfdd Add Game of Sim interactive
Port the Game of Sim from https://game-of-sim.lovable.app/ to the games theme.
2025-07-20 02:32:19 +00:00

14 lines
No EOL
277 B
TypeScript

import Layout from "@/components/Layout";
import GamesGallery from "@/components/GamesGallery";
const Games = () => {
return (
<Layout>
<div className="container mx-auto px-4 py-8">
<GamesGallery />
</div>
</Layout>
);
};
export default Games;