mirror of
https://github.com/outbackdingo/firezone.git
synced 2026-01-28 02:18:50 +00:00
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) ```
23 lines
699 B
HTML
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>
|