-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (38 loc) · 1.32 KB
/
index.html
File metadata and controls
42 lines (38 loc) · 1.32 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<!--
~ This Source Code Form is subject to the terms of the Mozilla Public
~ License, v. 2.0. If a copy of the MPL was not distributed with this
~ file, you can obtain one at https://mozilla.org/MPL/2.0/.
~
~ Copyright Oxide Computer Company
-->
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Oxide Console</title>
<meta name="viewport" content="width=1050" />
<meta name="color-scheme" content="dark light" />
<link rel="icon" type="image/svg+xml" href="./app/assets/favicon.svg" />
<link rel="icon" type="image/png" href="./app/assets/favicon.png" />
<!-- theme-init.js injected by vite plugin to avoid Vite trying to bundle it -->
</head>
<body>
<div id="root"></div>
<noscript>
<div class="grid min-h-screen place-content-center">
<p class="max-w-lg p-8 text-center text-balance">
This site requires JavaScript. If you don't want to enable JavaScript, see the
<a
href="https://docs.oxide.computer/"
class="external-link"
target="_blank"
rel="noopener noreferrer"
>Oxide docs</a
>
to learn about accessing the API through the CLI or SDKs.
</p>
</div>
</noscript>
<script type="module" src="./app/main.tsx"></script>
</body>
</html>