8f10353f0c
CI / lint (push) Has been cancelled
CI / js-syntax (push) Successful in 10m24s
CI / deps-audit (push) Has been cancelled
CI / test (push) Failing after 24m55s
CI / sast-bandit (push) Failing after 11m13s
CI / trivy (push) Failing after 9m32s
Docker Publish / build-and-push (push) Failing after 34m3s
27 lines
1003 B
HTML
27 lines
1003 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta
|
|
name="viewport"
|
|
content="width=device-width, initial-scale=1, viewport-fit=cover, maximum-scale=1"
|
|
/>
|
|
<meta name="theme-color" content="#0b0b0d" />
|
|
<title>StemDeck</title>
|
|
<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=Space+Grotesk:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500;600&display=swap"
|
|
rel="stylesheet"
|
|
/>
|
|
<link rel="stylesheet" href="/mobile/styles.css" />
|
|
</head>
|
|
<body>
|
|
<!-- The whole UI is rendered by app.js into #app. This is a static
|
|
visual shell on mock data (issue: mobile redesign). Screens and
|
|
interactions are real; data is not yet wired to the API. -->
|
|
<div id="app" class="m-app"></div>
|
|
<script type="module" src="/mobile/app.js"></script>
|
|
</body>
|
|
</html>
|