Files
firezone/rust/gui-client/src/about.html
Reactor Scram 4106419ef1 refactor: rename windows-client to gui-client (#3721)
This may cause conflicts with all my other PRs but it has to happen.

```[tasklist]
- [ ] Update test names in branch protection (I don't think I have perms for this)
```
2024-02-22 20:21:27 +00:00

23 lines
699 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="stylesheet" href="output.css" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>About Firezone</title>
<script src="./flowbite.min.js" defer></script>
<script type="module" src="about.js" defer></script>
</head>
<body class="bg-neutral-100 text-neutral-900">
<div class="container">
<img src="logo.png" alt="Firezone Logo" class="mt-16 w-64 h-64 mx-auto" />
<p class="mt-12 text-center">
Version
<strong><span id="cargo-version"></span></strong>
(<span id="git-version"></span>)
</p>
</div>
</body>
</html>