A Radar gains an optional Concept — a short subtitle naming the product and its typical performances, rendered under the title and wrapping to a balanced second line when long. Old radars default to an empty Concept on load.
20 lines
651 B
HTML
20 lines
651 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<link rel="preconnect" href="https://api.fonts.coollabs.io" crossorigin />
|
|
<link rel="preconnect" href="https://cdn.fonts.coollabs.io" crossorigin />
|
|
<link
|
|
rel="stylesheet"
|
|
href="https://api.fonts.coollabs.io/css2?family=Fredoka:wght@300..700&display=swap"
|
|
/>
|
|
<title>product-radar</title>
|
|
</head>
|
|
<body>
|
|
<div id="app"></div>
|
|
<script type="module" src="/src/main.ts"></script>
|
|
</body>
|
|
</html>
|