mirror of
https://github.com/outbackdingo/firezone.git
synced 2026-03-21 06:41:41 +00:00
We already use `vite` as a bundling tool but only to rollup some of the pre-built files. This setup (and therefore our buildscripts) can be massively simplified by instructing `vite` to also build our TypeScript code and compile tailwind. This makes it much easier to develop locally because one only needs to run `pnpm vite build --watch` to keep everything up to date.
31 lines
1.0 KiB
HTML
31 lines
1.0 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="shortcut icon" href="data:image/x-icon;," type="image/x-icon" />
|
|
<link rel="stylesheet" href="input.css" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>About Firezone</title>
|
|
<script type="module" src="about.ts" defer></script>
|
|
</head>
|
|
|
|
<body class="bg-neutral-100 min-h-screen flex items-center justify-center">
|
|
<div class="w-full max-w-sm flex flex-col items-center">
|
|
<img src="logo.png" alt="Firezone Logo" class="w-20 h-20 mb-6" />
|
|
<p class="text-neutral-600 mb-1">Version</p>
|
|
<p class="text-2xl font-bold mb-1">
|
|
<span id="cargo-version"></span>
|
|
</p>
|
|
<p class="text-neutral-400 text-sm mb-6">
|
|
(<span id="git-version"></span>)
|
|
</p>
|
|
<a
|
|
href="https://docs.firezone.dev"
|
|
target="_blank"
|
|
class="text-accent-450 hover:underline text-sm"
|
|
>Documentation</a
|
|
>
|
|
</div>
|
|
</body>
|
|
</html>
|