chore: save progress before layout changes

This commit is contained in:
Joan
2026-02-10 10:48:53 +01:00
parent 70dc35b4b2
commit bba5d1d9dd
48 changed files with 1535 additions and 690 deletions

View File

@@ -1,11 +1,9 @@
import { Outlet } from 'react-router-dom'
import GameHeader from './GameHeader'
import './Game.css'
export default function GameLayout() {
return (
<div className="game-layout">
<GameHeader />
<div className="game-content">
<Outlet />
</div>