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 rel="manifest" href="/manifest.webmanifest" />
16 <link rel="apple-touch-icon" href="/apple-touch-icon.png" />
17 <meta name="mobile-web-app-capable" content="yes" />
18 <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
19 <meta name="apple-mobile-web-app-title" content="AT Mot" />
20 <link
21 rel="preload"
22 href="/fonts/OverusedGrotesk-VF.woff2"
23 as="font"
24 type="font/woff2"
25 crossorigin
26 />
27
28 <!-- Open Graph / share preview -->
29 <meta property="og:title" content="AT Mot — a daily word game on atproto" />
30 <meta
31 property="og:description"
32 content="Guess the daily 5-letter word in English or French. Built on the AT Protocol — your data is yours."
33 />
34 <meta property="og:type" content="website" />
35 <meta property="og:url" content="https://atmot.herve.bzh" />
36 </head>
37 <body>
38 <noscript>AT Mot needs JavaScript to run. It's a static client-side app — no tracking, no server-side game logic.</noscript>
39 <div id="app" aria-busy="true"></div>
40 <script type="module" src="/src/main.ts"></script>
41 </body>
42</html>