status-web/apps/web/index.html
Pavel db7befaec2
Unify typography and enforce only valid variants (#354)
* unify typography under Text component

* migrate from paragraph/heading to text

* update font configuration
2023-03-22 10:57:25 +01:00

18 lines
484 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/png" href="/favicon.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap"
rel="stylesheet"
/>
<title>Status</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>