mirror of
https://github.com/AThilenius/axum-connect.git
synced 2025-01-08 18:51:46 +00:00
27 lines
799 B
HTML
27 lines
799 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
|
|
<meta name="theme-color" content="#001529" />
|
|
<title>Axum Connect Example Client</title>
|
|
<style>
|
|
body {
|
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
|
|
"Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji",
|
|
"Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
|
background: #1e1e1e;
|
|
color: #ffffff;
|
|
margin: 0;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<span id="root">
|
|
<div>Loading</div>
|
|
</span>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
</body>
|
|
</html>
|