AT Mot — a bilingual (EN/FR) daily word game native to the AT Protocol.
1<!doctype html>
2<html lang="en">
3 <head>
4 <meta charset="UTF-8" />
5 <meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover" />
6 <title>AT Mot — a daily word game on atproto</title>
7 <meta
8 name="description"
9 content="A bilingual (English / French) daily 5-letter word game native to the AT Protocol. Your results live in your own PDS; the leaderboard is powered by the Constellation backlink index. No database."
10 />
11 <meta name="color-scheme" content="light dark" />
12 <meta name="theme-color" content="#f7f8fa" media="(prefers-color-scheme: light)" />
13 <meta name="theme-color" content="#0e1116" media="(prefers-color-scheme: dark)" />
14 <link rel="icon" href="/icon.svg" type="image/svg+xml" />
15 <link
16 rel="preload"
17 href="/fonts/OverusedGrotesk-VF.woff2"
18 as="font"
19 type="font/woff2"
20 crossorigin
21 />
22
23 <!-- Open Graph / share preview -->
24 <meta property="og:title" content="AT Mot — a daily word game on atproto" />
25 <meta
26 property="og:description"
27 content="Guess the daily 5-letter word in English or French. Built on the AT Protocol — your data is yours."
28 />
29 <meta property="og:type" content="website" />
30 <meta property="og:url" content="https://atmot.herve.bzh" />
31 </head>
32 <body>
33 <noscript>AT Mot needs JavaScript to run. It's a static client-side app — no tracking, no server-side game logic.</noscript>
34 <div id="app" aria-busy="true"></div>
35 <script type="module" src="/src/main.ts"></script>
36 </body>
37</html>