(other_game) : Added link to tic-tac-toe game on side menu

This commit is contained in:
apetitco 2025-12-11 14:56:15 +01:00
parent 2f9304a89e
commit 4f039bb6a2
2 changed files with 2 additions and 1 deletions

View file

@ -28,6 +28,7 @@
<a href="/login" class="hover:bg-gray-700 rounded-md px-3 py-2">👤 Login</a> <a href="/login" class="hover:bg-gray-700 rounded-md px-3 py-2">👤 Login</a>
<a href="/signin" class="hover:bg-gray-700 rounded-md px-3 py-2">👤 Signin</a> <a href="/signin" class="hover:bg-gray-700 rounded-md px-3 py-2">👤 Signin</a>
<a href="/chat" class="hover:bg-gray-700 rounded-md px-3 py-2">👤 Chat</a> <a href="/chat" class="hover:bg-gray-700 rounded-md px-3 py-2">👤 Chat</a>
<a href="/ttt" class="hover:bg-gray-700 rounded-md px-3 py-2">⭕ Tic-Tac-Toe</a>
<a href="/contact" class="hover:bg-gray-700 rounded-md px-3 py-2">⚙️ Settings</a> <a href="/contact" class="hover:bg-gray-700 rounded-md px-3 py-2">⚙️ Settings</a>
<a href="/logout" class="hover:bg-gray-700 rounded-md px-3 py-2">🚪 Logout</a> <a href="/logout" class="hover:bg-gray-700 rounded-md px-3 py-2">🚪 Logout</a>
</nav> </nav>
@ -49,6 +50,7 @@
<script type="module" src="/src/toast/"></script> <script type="module" src="/src/toast/"></script>
<script type="module" src="/src/auth/"></script> <script type="module" src="/src/auth/"></script>
<script type="module" src="/src/chat/"></script> <script type="module" src="/src/chat/"></script>
<!-- <script type="module" src="/src/ttt/"></script> -->
</body> </body>
</html> </html>

View file

@ -5,7 +5,6 @@ import './login/login.ts'
import './signin/signin.ts' import './signin/signin.ts'
import './ttt/ttt.ts' import './ttt/ttt.ts'
import './profile/profile.ts' import './profile/profile.ts'
import './ttt/ttt.ts'
// ---- Initial load ---- // ---- Initial load ----
setTitle(""); setTitle("");