addded services

This commit is contained in:
2026-07-15 13:29:08 +03:00
parent ec33cd5398
commit 9ebbb83bdb
105 changed files with 10833 additions and 0 deletions
@@ -0,0 +1,22 @@
{{define "head"}}
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/static/style.css">
<script src="/static/theme.js"></script>
{{end}}
{{define "nav"}}
<header>
<div class="brand">ChessStars</div>
<nav>
<a href="/play">Play</a>
<a href="/courses">Courses</a>
<a href="/leaderboard">Leaderboard</a>
</nav>
<div class="header-right">
<a id="nav-account" href="/account">Account</a>
<button class="theme-toggle secondary" id="theme-toggle">theme</button>
</div>
</header>
<script src="/static/app.js"></script>
{{end}}