Skip to content

Commit

Permalink
Added a navbar to the create game page (#2009)
Browse files Browse the repository at this point in the history
added a navbar to the create game page
  • Loading branch information
EerierGosling authored Jul 19, 2024
1 parent ff455b1 commit 32338e9
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions src/pages/~/new-game.astro
Original file line number Diff line number Diff line change
@@ -1,15 +1,17 @@
---
import ProjectNameCreator from "../../components/popups-etc/project-name-creation";
import '../../global.css';
import Navbar from "../../components/navbar-main";
import { getSession } from "../../lib/game-saving/account";
const session = await getSession(Astro.cookies)
---


<html lang='en'>
<Navbar session={session} />

<body>
<ProjectNameCreator client:load/>
</body>



<body>
<ProjectNameCreator client:load/>
</body>
</html>

0 comments on commit 32338e9

Please sign in to comment.