full sync
This commit is contained in:
63
index.html
Normal file
63
index.html
Normal file
@@ -0,0 +1,63 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>JMK RB Live Event</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=Barlow:wght@400;500;600;700&family=Orbitron:wght@500;700;800&display=swap"
|
||||
rel="stylesheet"
|
||||
/>
|
||||
<link rel="stylesheet" href="./src/styles.css" />
|
||||
</head>
|
||||
<body>
|
||||
<div class="app-shell">
|
||||
<aside class="sidebar">
|
||||
<div class="brand">
|
||||
<div class="brand-mark">RC</div>
|
||||
<div>
|
||||
<h1 id="brandTitle">JMK RB</h1>
|
||||
<p id="brandSubtitle">Live Event</p>
|
||||
</div>
|
||||
</div>
|
||||
<nav id="nav" class="nav"></nav>
|
||||
<div class="sidebar-footer">
|
||||
<p id="connectionBadge" class="badge badge-offline">Decoder Offline</p>
|
||||
<small id="clock"></small>
|
||||
</div>
|
||||
</aside>
|
||||
|
||||
<main class="content">
|
||||
<header class="topbar">
|
||||
<div>
|
||||
<h2 id="pageTitle">Dashboard</h2>
|
||||
<p id="pageSubtitle">RC race timing with AMMC integration</p>
|
||||
</div>
|
||||
<div class="topbar-right">
|
||||
<label class="lang-wrap">
|
||||
<span id="languageLabel">Language</span>
|
||||
<select id="languageSelect" class="lang-select">
|
||||
<option value="sv">SV</option>
|
||||
<option value="en">EN</option>
|
||||
</select>
|
||||
</label>
|
||||
<p class="chip" id="activeSessionChip">No Active Session</p>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<section id="view" class="view"></section>
|
||||
</main>
|
||||
</div>
|
||||
|
||||
<template id="tableTemplate">
|
||||
<table class="data-table">
|
||||
<thead></thead>
|
||||
<tbody></tbody>
|
||||
</table>
|
||||
</template>
|
||||
|
||||
<script type="module" src="./src/app.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user