folder structure, router, color store

This commit is contained in:
2026-05-05 19:57:04 +09:00
parent c9d65db4ad
commit 155e25099d
15 changed files with 155 additions and 27 deletions

7
src/routes/Game.svelte Normal file
View File

@@ -0,0 +1,7 @@
<h1 style="color:black; padding:20px">
ColorQuest - Game (this is a placeholder)
</h1>
<a href='#/gameover'>
<button>Game over</button>
</a>

View File

@@ -0,0 +1,7 @@
<h1 style="color:black; padding:20px">
ColorQuest - Game Over (this is a placeholder)
</h1>
<a href='#/levelselect'>
<button>Play Again</button>
</a>

7
src/routes/Home.svelte Normal file
View File

@@ -0,0 +1,7 @@
<h1 style="color:black; padding:20px">
ColorQuest - Home (this is a placeholder)
</h1>
<a href='#/game'>
<button>Start Game</button>
</a>

View File

@@ -0,0 +1,7 @@
<h1 style="color:black; padding:20px">
ColorQuest - Level Select (this is a placeholder)
</h1>
<a href='#/game'>
<button>Start Game</button>
</a>