Files
botfights/frontend/index.html
T

27 lines
1.3 KiB
HTML
Raw Normal View History

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover" />
<title>BOTFIGHTS -- A safe place to hash it out</title>
<meta name="description" content="A safe place to hash it out" />
<meta name="theme-color" content="#0a0a0a" />
<link rel="icon" href="/favicon.ico" sizes="32x32" />
<link rel="icon" href="/icon.svg" type="image/svg+xml" />
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />
<meta name="mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<meta name="apple-mobile-web-app-title" content="BOTFIGHTS" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Press+Start+2P&family=Orbitron:wght@400;500;600;700;800;900&family=JetBrains+Mono:wght@400;700&family=Bungee+Shade&family=Monoton&family=Permanent+Marker&family=Rubik+Glitch&family=Honk&family=Silkscreen:wght@400;700&display=swap"
rel="stylesheet"
/>
</head>
<body class="bg-black text-white min-h-screen antialiased">
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>