Files
yellowjacket/frontend/index.html
T
2025-04-09 17:28:25 -05:00

50 lines
1.3 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta content="width=device-width, initial-scale=1.0" name="viewport" />
<link href="./index.css" rel="stylesheet" />
<title>yellowjacket</title>
</head>
<script src="/index.ts" type="module"></script>
<body>
<header class="container">
<nav>
<ul>
<li>
<hgroup>
<h1>YellowJacket</h1>
<p>Music how it was meant to bee.</p>
</hgroup>
</li>
</ul>
<ul>
<li>
<details class="dropdown">
<summary role="button" class="outline">
YJ
</summary>
<ul>
<li>
<a href="/src/pages/config/config.html">
<img src="/src/assets/images/icons/ui/settings.svg" />
</a>
</li>
</ul>
</details>
</li>
</ul>
</nav>
</header>
<hr />
<main class="container">
</main>
<footer>
<audio-player></audio-player>
</footer>
</body>
</html>