This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

chaos-soccer / index.html
1.4 kB 29 lines
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" /> 6 <title>Chaos Soccer</title> 7 <meta name="description" content="Chaos Soccer — insert coin, choose your fighter. A pixel-art brawler-soccer mashup. Sign in with atproto to summon your own actor." /> 8 9 <!-- Open Graph --> 10 <meta property="og:type" content="website" /> 11 <meta property="og:title" content="Chaos Soccer" /> 12 <meta property="og:description" content="Insert coin · choose your fighter. A pixel-art brawler-soccer mashup." /> 13 <meta property="og:url" content="%VITE_PUBLIC_URL%/" /> 14 <meta property="og:image" content="%VITE_PUBLIC_URL%/og-image.png" /> 15 <meta property="og:image:width" content="1200" /> 16 <meta property="og:image:height" content="508" /> 17 <meta property="og:image:alt" content="Chaos Soccer character select: Warrior, Sorceress, and Your Actor" /> 18 19 <!-- Twitter Card --> 20 <meta name="twitter:card" content="summary_large_image" /> 21 <meta name="twitter:title" content="Chaos Soccer" /> 22 <meta name="twitter:description" content="Insert coin · choose your fighter. A pixel-art brawler-soccer mashup." /> 23 <meta name="twitter:image" content="%VITE_PUBLIC_URL%/og-image.png" /> 24 </head> 25 <body> 26 <div id="root"></div> 27 <script type="module" src="/src/main.tsx"></script> 28 </body> 29</html>